mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-07-29 15:24:54 +00:00
Compare commits
71
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3bc03bbaec | ||
|
|
aaee24ac0b | ||
|
|
674dab29df | ||
|
|
b2b2f7b488 | ||
|
|
0b588c2d31 | ||
|
|
dcff067dc1 | ||
|
|
7eee8538ec | ||
|
|
98b66fdf24 | ||
|
|
693a111c5a | ||
|
|
b19edd0b74 | ||
|
|
0e98a7f1ce | ||
|
|
14517062c4 | ||
|
|
0c0faf7f80 | ||
|
|
eda79603fe | ||
|
|
8f017942d9 | ||
|
|
f4e7a2e9e4 | ||
|
|
317e534aa0 | ||
|
|
3ba6d0325a | ||
|
|
318520a0f1 | ||
|
|
ea1f3653a9 | ||
|
|
423d4b9f2d | ||
|
|
8bc4e5ee94 | ||
|
|
65fe6aacc7 | ||
|
|
b5a23cff2f | ||
|
|
aa90f79c21 | ||
|
|
e704bf88dc | ||
|
|
1646756c6c | ||
|
|
48d6ff13f2 | ||
|
|
bfe2d92619 | ||
|
|
4f0845b094 | ||
|
|
dee568e2a6 | ||
|
|
f60a2af841 | ||
|
|
33cd48a17f | ||
|
|
d76dbf5366 | ||
|
|
b66182cd7b | ||
|
|
3fe6562c57 | ||
|
|
737d568f80 | ||
|
|
b992f9fc05 | ||
|
|
ed714b8a5a | ||
|
|
e0ab6a2e75 | ||
|
|
6d249b4932 | ||
|
|
90ea4f27c4 | ||
|
|
371c4f57d3 | ||
|
|
5569447ea0 | ||
|
|
17796357ee | ||
|
|
b47b9800a1 | ||
|
|
0be884d441 | ||
|
|
fce2fbb8f6 | ||
|
|
fa01396dfd | ||
|
|
c9443e890f | ||
|
|
21e4721a82 | ||
|
|
1985da14f8 | ||
|
|
59a737f669 | ||
|
|
90bee4285f | ||
|
|
7dca0bfa6a | ||
|
|
3a34bdc7b0 | ||
|
|
c7899a9a84 | ||
|
|
82fc1c6cee | ||
|
|
cd3c162e6e | ||
|
|
50c88dab7a | ||
|
|
5744a75e6a | ||
|
|
02c6b5f3e4 | ||
|
|
b566232542 | ||
|
|
be40356d2e | ||
|
|
5ea8cf2335 | ||
|
|
84a04301d1 | ||
|
|
3edda48324 | ||
|
|
f86bc57880 | ||
|
|
97662b6c5c | ||
|
|
6e052d5507 | ||
|
|
afb19fe637 |
@@ -86,7 +86,7 @@ jobs:
|
|||||||
# ---- Prepare Release ----
|
# ---- Prepare Release ----
|
||||||
- name: Generate requirements file
|
- name: Generate requirements file
|
||||||
run: |
|
run: |
|
||||||
uv export --quiet --no-dev --all-extras --format requirements-txt --output-file requirements.txt
|
uv export --quiet --no-dev --all-extras --emit-index-url --format requirements-txt --output-file requirements.txt
|
||||||
- name: Compile messages
|
- name: Compile messages
|
||||||
env:
|
env:
|
||||||
PAPERLESS_SECRET_KEY: "ci-release-not-a-real-secret"
|
PAPERLESS_SECRET_KEY: "ci-release-not-a-real-secret"
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
PAPERLESS_REDIS: redis://broker:6379
|
PAPERLESS_REDIS: redis://broker:6379
|
||||||
PAPERLESS_DBHOST: db
|
PAPERLESS_DBHOST: db
|
||||||
PAPERLESS_DBENGINE: postgres
|
PAPERLESS_DBENGINE: postgresql
|
||||||
env_file:
|
env_file:
|
||||||
- stack.env
|
- stack.env
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -151,6 +151,23 @@ the background.
|
|||||||
|
|
||||||
### Bare Metal Route {#bare-metal-updating}
|
### Bare Metal Route {#bare-metal-updating}
|
||||||
|
|
||||||
|
!!! warning
|
||||||
|
|
||||||
|
Extracting a new release archive on top of an existing installation
|
||||||
|
(e.g. `tar -xf paperless-ngx-vX.Y.Z.tar.xz -C /opt/paperless`) only adds
|
||||||
|
and overwrites files -- it does not remove files that were deleted in
|
||||||
|
the new release. Leftover files from an old version, such as
|
||||||
|
superseded database migrations, can remain on disk and cause errors
|
||||||
|
like `NodeNotFoundError` during `manage.py migrate`.
|
||||||
|
|
||||||
|
Before unpacking a new release over an existing bare-metal
|
||||||
|
installation, remove the previous source tree first (everything
|
||||||
|
except your `media`, `data`, and `consume` directories and your
|
||||||
|
`paperless.conf`/`.env`), or unpack into a fresh directory and move
|
||||||
|
your persistent data and configuration over. Installations updated via
|
||||||
|
`git pull` on a clean checkout are not affected, since Git removes
|
||||||
|
files that no longer exist upstream.
|
||||||
|
|
||||||
After grabbing the new release and unpacking the contents, do the
|
After grabbing the new release and unpacking the contents, do the
|
||||||
following:
|
following:
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,98 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## paperless-ngx 3.0.3
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Fixhancement: PAPERLESS\_ALLAUTH\_TRUSTED\_PROXY\_COUNT [@shamoon](https://github.com/shamoon) ([#13281](https://github.com/paperless-ngx/paperless-ngx/pull/13281))
|
||||||
|
- Fix: preserve document fields during Gotenberg conversion to PDF [@stumpylog](https://github.com/stumpylog) ([#13271](https://github.com/paperless-ngx/paperless-ngx/pull/13271))
|
||||||
|
- Fix: Makes the email date aware as soon as possible during parsing [@stumpylog](https://github.com/stumpylog) ([#13266](https://github.com/paperless-ngx/paperless-ngx/pull/13266))
|
||||||
|
- Fix: Handle a plain string as Celery sometimes provides for the traceback [@stumpylog](https://github.com/stumpylog) ([#13267](https://github.com/paperless-ngx/paperless-ngx/pull/13267))
|
||||||
|
- Fix: Emit the torch index into the requirements.txt for people still using it [@stumpylog](https://github.com/stumpylog) ([#13265](https://github.com/paperless-ngx/paperless-ngx/pull/13265))
|
||||||
|
- Fix: handle notes without a user when building the search index [@matthiasmast](https://github.com/matthiasmast) ([#13260](https://github.com/paperless-ngx/paperless-ngx/pull/13260))
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
- Docs: warn bare-metal users about stale files when upgrading [@stumpylog](https://github.com/stumpylog) ([#13296](https://github.com/paperless-ngx/paperless-ngx/pull/13296))
|
||||||
|
- Documentation: Add the NumPy CPU baseline increase to the migration guide [@stumpylog](https://github.com/stumpylog) ([#13269](https://github.com/paperless-ngx/paperless-ngx/pull/13269))
|
||||||
|
|
||||||
|
### Maintenance
|
||||||
|
|
||||||
|
- Fix: Emit the torch index into the requirements.txt for people still using it [@stumpylog](https://github.com/stumpylog) ([#13265](https://github.com/paperless-ngx/paperless-ngx/pull/13265))
|
||||||
|
|
||||||
|
### All App Changes
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>6 changes</summary>
|
||||||
|
|
||||||
|
- Fixhancement: PAPERLESS\_ALLAUTH\_TRUSTED\_PROXY\_COUNT [@shamoon](https://github.com/shamoon) ([#13281](https://github.com/paperless-ngx/paperless-ngx/pull/13281))
|
||||||
|
- Tweak: adjust top navbar wrapping when AI chat button visible [@shamoon](https://github.com/shamoon) ([#13280](https://github.com/paperless-ngx/paperless-ngx/pull/13280))
|
||||||
|
- Fix: preserve document fields during Gotenberg conversion to PDF [@stumpylog](https://github.com/stumpylog) ([#13271](https://github.com/paperless-ngx/paperless-ngx/pull/13271))
|
||||||
|
- Fix: Makes the email date aware as soon as possible during parsing [@stumpylog](https://github.com/stumpylog) ([#13266](https://github.com/paperless-ngx/paperless-ngx/pull/13266))
|
||||||
|
- Fix: Handle a plain string as Celery sometimes provides for the traceback [@stumpylog](https://github.com/stumpylog) ([#13267](https://github.com/paperless-ngx/paperless-ngx/pull/13267))
|
||||||
|
- Fix: handle notes without a user when building the search index [@matthiasmast](https://github.com/matthiasmast) ([#13260](https://github.com/paperless-ngx/paperless-ngx/pull/13260))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## paperless-ngx 3.0.2
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Fix: fix broken migration in 3.0.1 [@shamoon](https://github.com/shamoon) ([#13242](https://github.com/paperless-ngx/paperless-ngx/pull/13242))
|
||||||
|
|
||||||
|
### All App Changes
|
||||||
|
|
||||||
|
- Fix: fix broken migration in 3.0.1 [@shamoon](https://github.com/shamoon) ([#13242](https://github.com/paperless-ngx/paperless-ngx/pull/13242))
|
||||||
|
|
||||||
|
## paperless-ngx 3.0.1
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Fix: selection\_data re-derives the filtered document set 5 times over [@stumpylog](https://github.com/stumpylog) ([#13229](https://github.com/paperless-ngx/paperless-ngx/pull/13229))
|
||||||
|
- Fix: exclude source document from its own RAG similarity results [@stumpylog](https://github.com/stumpylog) ([#13233](https://github.com/paperless-ngx/paperless-ngx/pull/13233))
|
||||||
|
- Fix: split mailrule maximum\_age clamp into its own migration [@stumpylog](https://github.com/stumpylog) ([#13231](https://github.com/paperless-ngx/paperless-ngx/pull/13231))
|
||||||
|
- Chore: mark yes in confirm button for translation [@shamoon](https://github.com/shamoon) ([#13225](https://github.com/paperless-ngx/paperless-ngx/pull/13225))
|
||||||
|
- Fix: correct URL for W001 check [@shamoon](https://github.com/shamoon) ([#13220](https://github.com/paperless-ngx/paperless-ngx/pull/13220))
|
||||||
|
- Fix: ensure create dialog uses correct attribute type [@shamoon](https://github.com/shamoon) ([#13221](https://github.com/paperless-ngx/paperless-ngx/pull/13221))
|
||||||
|
- Fix: correct database engine from postgres to postgresql [@OberstVonGatow](https://github.com/OberstVonGatow) ([#13213](https://github.com/paperless-ngx/paperless-ngx/pull/13213))
|
||||||
|
- Fix: remove unnecessary .distinct() dominating document list queries [@stumpylog](https://github.com/stumpylog) ([#13205](https://github.com/paperless-ngx/paperless-ngx/pull/13205))
|
||||||
|
- Fix: also wrap non-breaking words in chat messages, handle whitespace [@shamoon](https://github.com/shamoon) ([#13211](https://github.com/paperless-ngx/paperless-ngx/pull/13211))
|
||||||
|
- Fix: tag/custom-field document\_count scales badly with tag count [@stumpylog](https://github.com/stumpylog) ([#13203](https://github.com/paperless-ngx/paperless-ngx/pull/13203))
|
||||||
|
- Fix: batch document user\_can\_change checks to avoid per-row N+1 [@stumpylog](https://github.com/stumpylog) ([#13204](https://github.com/paperless-ngx/paperless-ngx/pull/13204))
|
||||||
|
- Fix: fix app title restoration [@shamoon](https://github.com/shamoon) ([#13208](https://github.com/paperless-ngx/paperless-ngx/pull/13208))
|
||||||
|
- Fix: handle long wrapping titles in AI chat document list [@shamoon](https://github.com/shamoon) ([#13206](https://github.com/paperless-ngx/paperless-ngx/pull/13206))
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
- Chore(deps-dev): Bump postcss from 8.5.6 to 8.5.22 in /src/paperless\_mail/templates in the npm\_and\_yarn group across 1 directory @[dependabot[bot]](https://github.com/apps/dependabot) ([#13236](https://github.com/paperless-ngx/paperless-ngx/pull/13236))
|
||||||
|
- Chore(deps): Bump pyasn1 from 0.6.3 to 0.6.4 in the uv group across 1 directory @[dependabot[bot]](https://github.com/apps/dependabot) ([#13237](https://github.com/paperless-ngx/paperless-ngx/pull/13237))
|
||||||
|
- Chore(deps): Bump the uv group across 1 directory with 8 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#13189](https://github.com/paperless-ngx/paperless-ngx/pull/13189))
|
||||||
|
|
||||||
|
### All App Changes
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>17 changes</summary>
|
||||||
|
|
||||||
|
- Chore(deps-dev): Bump postcss from 8.5.6 to 8.5.22 in /src/paperless\_mail/templates in the npm\_and\_yarn group across 1 directory @[dependabot[bot]](https://github.com/apps/dependabot) ([#13236](https://github.com/paperless-ngx/paperless-ngx/pull/13236))
|
||||||
|
- Fix: selection\_data re-derives the filtered document set 5 times over [@stumpylog](https://github.com/stumpylog) ([#13229](https://github.com/paperless-ngx/paperless-ngx/pull/13229))
|
||||||
|
- Chore: reword "Settings > Default permissions" description for clarity [@NotaInutilis](https://github.com/NotaInutilis) ([#13232](https://github.com/paperless-ngx/paperless-ngx/pull/13232))
|
||||||
|
- Chore(deps): Bump pyasn1 from 0.6.3 to 0.6.4 in the uv group across 1 directory @[dependabot[bot]](https://github.com/apps/dependabot) ([#13237](https://github.com/paperless-ngx/paperless-ngx/pull/13237))
|
||||||
|
- Chore(deps): Bump the uv group across 1 directory with 8 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#13189](https://github.com/paperless-ngx/paperless-ngx/pull/13189))
|
||||||
|
- Fix: exclude source document from its own RAG similarity results [@stumpylog](https://github.com/stumpylog) ([#13233](https://github.com/paperless-ngx/paperless-ngx/pull/13233))
|
||||||
|
- Fix: split mailrule maximum\_age clamp into its own migration [@stumpylog](https://github.com/stumpylog) ([#13231](https://github.com/paperless-ngx/paperless-ngx/pull/13231))
|
||||||
|
- Chore: mark yes in confirm button for translation [@shamoon](https://github.com/shamoon) ([#13225](https://github.com/paperless-ngx/paperless-ngx/pull/13225))
|
||||||
|
- Fix: correct URL for W001 check [@shamoon](https://github.com/shamoon) ([#13220](https://github.com/paperless-ngx/paperless-ngx/pull/13220))
|
||||||
|
- Fix: ensure create dialog uses correct attribute type [@shamoon](https://github.com/shamoon) ([#13221](https://github.com/paperless-ngx/paperless-ngx/pull/13221))
|
||||||
|
- Fix: correct database engine from postgres to postgresql [@OberstVonGatow](https://github.com/OberstVonGatow) ([#13213](https://github.com/paperless-ngx/paperless-ngx/pull/13213))
|
||||||
|
- Fix: remove unnecessary .distinct() dominating document list queries [@stumpylog](https://github.com/stumpylog) ([#13205](https://github.com/paperless-ngx/paperless-ngx/pull/13205))
|
||||||
|
- Fix: also wrap non-breaking words in chat messages, handle whitespace [@shamoon](https://github.com/shamoon) ([#13211](https://github.com/paperless-ngx/paperless-ngx/pull/13211))
|
||||||
|
- Fix: tag/custom-field document\_count scales badly with tag count [@stumpylog](https://github.com/stumpylog) ([#13203](https://github.com/paperless-ngx/paperless-ngx/pull/13203))
|
||||||
|
- Fix: batch document user\_can\_change checks to avoid per-row N+1 [@stumpylog](https://github.com/stumpylog) ([#13204](https://github.com/paperless-ngx/paperless-ngx/pull/13204))
|
||||||
|
- Fix: fix app title restoration [@shamoon](https://github.com/shamoon) ([#13208](https://github.com/paperless-ngx/paperless-ngx/pull/13208))
|
||||||
|
- Fix: handle long wrapping titles in AI chat document list [@shamoon](https://github.com/shamoon) ([#13206](https://github.com/paperless-ngx/paperless-ngx/pull/13206))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
## paperless-ngx 3.0.0
|
## paperless-ngx 3.0.0
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|||||||
+24
-10
@@ -522,22 +522,36 @@ do CORS calls. Set this to your public domain name.
|
|||||||
fail2ban with log entries for failed authorization attempts. Value should be
|
fail2ban with log entries for failed authorization attempts. Value should be
|
||||||
IP address(es).
|
IP address(es).
|
||||||
|
|
||||||
This setting also controls allauth's
|
By default, this setting also controls allauth's trusted proxy count,
|
||||||
[`ALLAUTH_TRUSTED_PROXY_COUNT`](https://docs.allauth.org/en/latest/account/configuration.html),
|
which is set to the number of proxies listed here. Override that default
|
||||||
which is set to the number of proxies listed here. Without this,
|
with [`PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT`](#PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT)
|
||||||
allauth cannot determine the client IP address for rate limiting when
|
when the list length does not match the number of proxy hops.
|
||||||
running behind a reverse proxy, resulting in a `403 Forbidden` on login.
|
|
||||||
|
|
||||||
Defaults to empty string.
|
Defaults to empty string.
|
||||||
|
|
||||||
|
#### [`PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT=<integer>`](#PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT) {#PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT}
|
||||||
|
|
||||||
|
: Sets allauth's
|
||||||
|
[`ALLAUTH_TRUSTED_PROXY_COUNT`](https://docs.allauth.org/en/latest/common/rate_limits.html#configuration).
|
||||||
|
This is the number of trusted proxy **hops** represented in each
|
||||||
|
`X-Forwarded-For` header, not the number of IP addresses through which those
|
||||||
|
proxies may be reached. For example, a single dual-stack proxy is one hop even
|
||||||
|
when its IPv4 and IPv6 addresses are both listed in
|
||||||
|
[`PAPERLESS_TRUSTED_PROXIES`](#PAPERLESS_TRUSTED_PROXIES).
|
||||||
|
|
||||||
|
Only trust `X-Forwarded-For` when untrusted clients cannot connect directly
|
||||||
|
to Paperless-ngx.
|
||||||
|
|
||||||
|
Defaults to the number of entries in `PAPERLESS_TRUSTED_PROXIES`.
|
||||||
|
|
||||||
#### [`PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER=<header-name>`](#PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER) {#PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER}
|
#### [`PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER=<header-name>`](#PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER) {#PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER}
|
||||||
|
|
||||||
: Sets allauth's
|
: Sets allauth's
|
||||||
[`ALLAUTH_TRUSTED_CLIENT_IP_HEADER`](https://docs.allauth.org/en/latest/account/configuration.html).
|
[`ALLAUTH_TRUSTED_CLIENT_IP_HEADER`](https://docs.allauth.org/en/latest/common/rate_limits.html#configuration).
|
||||||
Use this when your reverse proxy sets a dedicated header for the real
|
Use this when your reverse proxy sets a dedicated header for the real
|
||||||
client IP instead of `X-Forwarded-For`, for example `X-Real-IP` (nginx)
|
client IP instead of `X-Forwarded-For`, for example `X-Real-IP` (nginx)
|
||||||
or `CF-Connecting-IP` (Cloudflare). When set, this takes precedence over
|
or `CF-Connecting-IP` (Cloudflare). When set, this takes precedence over
|
||||||
[`PAPERLESS_TRUSTED_PROXIES`](#PAPERLESS_TRUSTED_PROXIES).
|
`PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT`.
|
||||||
|
|
||||||
Defaults to none.
|
Defaults to none.
|
||||||
|
|
||||||
@@ -918,8 +932,8 @@ for display in the web interface.
|
|||||||
| Document type | `never` | `auto` (default) | `always` |
|
| Document type | `never` | `auto` (default) | `always` |
|
||||||
| -------------------------- | ------- | -------------------------- | -------- |
|
| -------------------------- | ------- | -------------------------- | -------- |
|
||||||
| Scanned image (TIFF, JPEG) | No | **Yes** | Yes |
|
| Scanned image (TIFF, JPEG) | No | **Yes** | Yes |
|
||||||
| Image-based PDF | No | **Yes** (short/no text, untagged) | Yes |
|
| Image-based PDF | No | **Yes** (no embedded text) | Yes |
|
||||||
| Born-digital PDF | No | No (tagged or has embedded text) | Yes |
|
| Born-digital PDF | No | No (has embedded text, optionally confirmed by tag) | Yes |
|
||||||
| Plain text, email, HTML | No | No | No |
|
| Plain text, email, HTML | No | No | No |
|
||||||
| DOCX / ODT (via Tika) | Yes\* | Yes\* | Yes\* |
|
| DOCX / ODT (via Tika) | Yes\* | Yes\* | Yes\* |
|
||||||
|
|
||||||
@@ -2121,7 +2135,7 @@ used with the OpenAI-compatible backend to target a custom provider or local gat
|
|||||||
|
|
||||||
Defaults to None.
|
Defaults to None.
|
||||||
|
|
||||||
### [`PAPERLESS_AI_LLM_OUTPUT_LANGUAGE=<str>`](#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE) {#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE}
|
#### [`PAPERLESS_AI_LLM_OUTPUT_LANGUAGE=<str>`](#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE) {#PAPERLESS_AI_LLM_OUTPUT_LANGUAGE}
|
||||||
|
|
||||||
: The language to use for AI suggestions (results may vary by LLM model). If not supplied, defaults to the user's UI language setting or None.
|
: The language to use for AI suggestions (results may vary by LLM model). If not supplied, defaults to the user's UI language setting or None.
|
||||||
|
|
||||||
|
|||||||
+65
-4
@@ -133,7 +133,7 @@ PAPERLESS_DB_OPTIONS="sslmode=require,sslrootcert=/certs/ca.pem,pool.max_size=10
|
|||||||
|
|
||||||
## OCR and Archive File Generation Settings
|
## OCR and Archive File Generation Settings
|
||||||
|
|
||||||
The settings that control OCR behaviour and archive file generation have been redesigned. The old settings that coupled these two concerns together are **removed** — old values are not silently honoured; a startup warning is logged if any removed variable is still set in your environment.
|
The settings that control OCR behaviour and archive file generation have been redesigned. The old settings that coupled these two concerns together are **removed** - old values are not silently honoured; a startup warning is logged if any removed variable is still set in your environment.
|
||||||
|
|
||||||
### Removed settings
|
### Removed settings
|
||||||
|
|
||||||
@@ -166,7 +166,7 @@ Remove any `PAPERLESS_OCR_SKIP_ARCHIVE_FILE` variable from your environment. If
|
|||||||
# v2: skip OCR when text present, always archive
|
# v2: skip OCR when text present, always archive
|
||||||
PAPERLESS_OCR_MODE=skip
|
PAPERLESS_OCR_MODE=skip
|
||||||
# v3: equivalent (auto is the new default)
|
# v3: equivalent (auto is the new default)
|
||||||
# No change needed — auto is the default
|
# No change needed - auto is the default
|
||||||
|
|
||||||
# v2: skip OCR when text present, skip archive too
|
# v2: skip OCR when text present, skip archive too
|
||||||
PAPERLESS_OCR_MODE=skip_noarchive
|
PAPERLESS_OCR_MODE=skip_noarchive
|
||||||
@@ -189,7 +189,7 @@ PAPERLESS_ARCHIVE_FILE_GENERATION=auto
|
|||||||
|
|
||||||
If you use the **remote OCR parser** (Azure AI), note that it always produces a
|
If you use the **remote OCR parser** (Azure AI), note that it always produces a
|
||||||
searchable PDF and stores it as the archive copy. `ARCHIVE_FILE_GENERATION=never`
|
searchable PDF and stores it as the archive copy. `ARCHIVE_FILE_GENERATION=never`
|
||||||
has no effect for documents handled by the remote parser — the archive is produced
|
has no effect for documents handled by the remote parser - the archive is produced
|
||||||
unconditionally by the remote engine.
|
unconditionally by the remote engine.
|
||||||
|
|
||||||
## Search Index (Whoosh -> Tantivy)
|
## Search Index (Whoosh -> Tantivy)
|
||||||
@@ -324,8 +324,69 @@ option since v1.8.0.
|
|||||||
Allauth changed how it determines the client IP address for login rate limiting. Users running
|
Allauth changed how it determines the client IP address for login rate limiting. Users running
|
||||||
behind a reverse proxy may need to set
|
behind a reverse proxy may need to set
|
||||||
[`PAPERLESS_TRUSTED_PROXIES`](configuration.md#PAPERLESS_TRUSTED_PROXIES),
|
[`PAPERLESS_TRUSTED_PROXIES`](configuration.md#PAPERLESS_TRUSTED_PROXIES),
|
||||||
|
[`PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT`](configuration.md#PAPERLESS_ALLAUTH_TRUSTED_PROXY_COUNT),
|
||||||
[`PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER`](configuration.md#PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER),
|
[`PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER`](configuration.md#PAPERLESS_ALLAUTH_TRUSTED_CLIENT_IP_HEADER),
|
||||||
or both, to avoid `403 Forbidden` errors on login.
|
or a combination of these settings to avoid `403 Forbidden` errors on login.
|
||||||
|
The proxy count is the number of proxy hops in `X-Forwarded-For`, which may
|
||||||
|
differ from the number of configured proxy IP addresses.
|
||||||
|
|
||||||
|
## Minimum CPU Requirements (NumPy Baseline)
|
||||||
|
|
||||||
|
Starting with NumPy 2.4.0, official `manylinux` x86_64 wheels are compiled with a minimum
|
||||||
|
CPU baseline of `x86-64-v2`, which requires SSE3, SSSE3, SSE4.1, SSE4.2, POPCNT, and
|
||||||
|
CMPXCHG16B. This is a [deliberate upstream change](https://github.com/numpy/numpy/issues/27851)
|
||||||
|
citing that these instructions have been present in over 99.7% of CPUs since 2008
|
||||||
|
([Intel](<https://en.wikipedia.org/wiki/Nehalem_(microarchitecture)>)) or 2011
|
||||||
|
([AMD](<https://en.wikipedia.org/wiki/Bulldozer_(microarchitecture)>)).
|
||||||
|
|
||||||
|
NumPy is a dependency of the document classifier (via scikit-learn), so any CPU that
|
||||||
|
predates SSE4.2 support will crash with `SIGILL` (illegal instruction) when the classifier
|
||||||
|
is loaded or trained, regardless of whether AI features are enabled.
|
||||||
|
|
||||||
|
This differs from NumPy's optional SIMD dispatch (e.g. AVX2, AVX512), which is detected and
|
||||||
|
selected safely at runtime - the `x86-64-v2` requirement above is a hard floor baked into the
|
||||||
|
wheel, with no runtime fallback.
|
||||||
|
|
||||||
|
### Affected hardware
|
||||||
|
|
||||||
|
CPUs older than roughly 2008 (Intel) or 2011 (AMD) that lack SSE4.2 support. This is more
|
||||||
|
likely to affect low-power or embedded hardware - e.g. early Atom, Celeron, or pre-Bulldozer
|
||||||
|
AMD chips - than typical desktop or server hardware from the last decade.
|
||||||
|
|
||||||
|
Check for SSE4.2 support with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
grep -o -m1 sse4_2 /proc/cpuinfo
|
||||||
|
```
|
||||||
|
|
||||||
|
If this prints nothing, your CPU is affected.
|
||||||
|
|
||||||
|
### Symptoms
|
||||||
|
|
||||||
|
The Celery worker (and potentially the web server) repeatedly crashes and restarts with a
|
||||||
|
`SIGILL` error, typically visible in `dmesg`/`journalctl` as a `trap invalid opcode` inside
|
||||||
|
`_multiarray_umath...so`. Because the classifier is trained on a periodic schedule
|
||||||
|
(hourly, by default), affected instances see intermittent, hard-to-reproduce document
|
||||||
|
consumption failures whenever that scheduled task runs and takes down the worker process
|
||||||
|
mid-task.
|
||||||
|
|
||||||
|
### Action Required (for affected hardware only)
|
||||||
|
|
||||||
|
There is no way to make the classifier itself work on such CPUs - it requires an unofficial
|
||||||
|
NumPy build with `cpu-baseline=none`, which is not something we can ship. The practical
|
||||||
|
path forward is to stop the classifier from ever loading or training, which avoids
|
||||||
|
importing NumPy at all:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
PAPERLESS_TRAIN_TASK_CRON=disable
|
||||||
|
```
|
||||||
|
|
||||||
|
This disables the periodic classifier training task (see
|
||||||
|
[`PAPERLESS_TRAIN_TASK_CRON`](configuration.md#PAPERLESS_TRAIN_TASK_CRON)). Automatic
|
||||||
|
matching based on the classifier (suggested correspondents, document types, tags, and
|
||||||
|
storage paths from trained rules) will no longer be available, but rule-based matching is
|
||||||
|
unaffected, and document consumption itself will no longer be at risk of crashing the
|
||||||
|
worker.
|
||||||
|
|
||||||
## Database Migrations
|
## Database Migrations
|
||||||
|
|
||||||
|
|||||||
@@ -262,6 +262,14 @@ to a positive number to enable polling and disable native filesystem notificatio
|
|||||||
and copy the contents to the home directory of the user you created
|
and copy the contents to the home directory of the user you created
|
||||||
earlier (`/opt/paperless`).
|
earlier (`/opt/paperless`).
|
||||||
|
|
||||||
|
!!! note
|
||||||
|
|
||||||
|
If you are updating an existing bare-metal installation rather than
|
||||||
|
installing for the first time, see the
|
||||||
|
[bare metal update instructions](administration.md#bare-metal-updating)
|
||||||
|
instead -- extracting a new release on top of an old one can leave
|
||||||
|
behind stale files from the previous version.
|
||||||
|
|
||||||
Optional: If you cloned the Git repository, you will need to
|
Optional: If you cloned the Git repository, you will need to
|
||||||
compile the frontend yourself. See [here](development.md#front-end-development)
|
compile the frontend yourself. See [here](development.md#front-end-development)
|
||||||
and use the `build` step, not `serve`.
|
and use the `build` step, not `serve`.
|
||||||
|
|||||||
+10
-9
@@ -833,10 +833,10 @@ contract you signed 8 years ago).
|
|||||||
|
|
||||||
When you search paperless for a document, it tries to match this query
|
When you search paperless for a document, it tries to match this query
|
||||||
against your documents. Paperless will look for matching documents by
|
against your documents. Paperless will look for matching documents by
|
||||||
inspecting their content, title, correspondent, type, tags, notes, and
|
inspecting their content, title, correspondent, type, and tags. Paperless
|
||||||
custom field values. Paperless returns a scored list of results, so that
|
returns a scored list of results, so that documents matching your query
|
||||||
documents matching your query better will appear further up in the search
|
better will appear further up in the search results. Notes and custom field
|
||||||
results.
|
values can be searched using the advanced search syntax described below.
|
||||||
|
|
||||||
By default, paperless returns only documents which contain all words
|
By default, paperless returns only documents which contain all words
|
||||||
typed in the search bar. A few things to know about how matching works:
|
typed in the search bar. A few things to know about how matching works:
|
||||||
@@ -891,9 +891,9 @@ Supported date keywords: `today`, `yesterday`, `previous week`,
|
|||||||
|
|
||||||
#### Searching custom fields
|
#### Searching custom fields
|
||||||
|
|
||||||
Custom field values are included in the full-text index, so a plain search
|
Custom field names and values are included in the full-text index, but they
|
||||||
already matches documents whose custom field values contain your search terms.
|
are not searched by a plain, unqualified query. Use the advanced search syntax
|
||||||
To narrow by field name or value specifically:
|
to search by field name or value:
|
||||||
|
|
||||||
```
|
```
|
||||||
custom_fields.value:policy
|
custom_fields.value:policy
|
||||||
@@ -921,8 +921,9 @@ custom_fields.name:"Contract Number" custom_fields.value:1312
|
|||||||
|
|
||||||
#### Searching notes
|
#### Searching notes
|
||||||
|
|
||||||
Notes content is included in full-text search automatically. To search
|
Notes are included in the full-text index, but they are not searched by a
|
||||||
by note author or content specifically:
|
plain, unqualified query. Use the advanced search syntax to search by note
|
||||||
|
author or content:
|
||||||
|
|
||||||
```
|
```
|
||||||
notes.user:alice
|
notes.user:alice
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "paperless-ngx"
|
name = "paperless-ngx"
|
||||||
version = "3.0.0"
|
version = "3.0.4"
|
||||||
description = "A community-supported supercharged document management system: scan, index and archive all your physical documents"
|
description = "A community-supported supercharged document management system: scan, index and archive all your physical documents"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
@@ -75,7 +75,7 @@ dependencies = [
|
|||||||
"sqlite-vec==0.1.9",
|
"sqlite-vec==0.1.9",
|
||||||
"tantivy~=0.26.0",
|
"tantivy~=0.26.0",
|
||||||
"tika-client~=0.11.0",
|
"tika-client~=0.11.0",
|
||||||
"torch~=2.12.0",
|
"torch~=2.13.0",
|
||||||
"watchfiles>=1.1.1",
|
"watchfiles>=1.1.1",
|
||||||
"whitenoise~=6.11",
|
"whitenoise~=6.11",
|
||||||
"zxing-cpp~=3.0.0",
|
"zxing-cpp~=3.0.0",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { expect, test } from '@playwright/test'
|
import { expect, test, type WebSocketRoute } from '@playwright/test'
|
||||||
import path from 'node:path'
|
import path from 'node:path'
|
||||||
|
|
||||||
const REQUESTS_HAR = path.join(__dirname, 'requests/api-document-detail.har')
|
const REQUESTS_HAR = path.join(__dirname, 'requests/api-document-detail.har')
|
||||||
@@ -95,3 +95,60 @@ test('should support quick filters', async ({ page }) => {
|
|||||||
.click()
|
.click()
|
||||||
await expect(page).toHaveURL(/tags__id__all=4&sort=created&reverse=1&page=1/)
|
await expect(page).toHaveURL(/tags__id__all=4&sort=created&reverse=1&page=1/)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('should finish reloading the preview after a remote document update', async ({
|
||||||
|
page,
|
||||||
|
}) => {
|
||||||
|
let resolveStatusSocket: (socket: WebSocketRoute) => void
|
||||||
|
const statusSocketReady = new Promise<WebSocketRoute>((resolve) => {
|
||||||
|
resolveStatusSocket = resolve
|
||||||
|
})
|
||||||
|
await page.routeWebSocket(/\/ws\/status\/$/, (socket) => {
|
||||||
|
resolveStatusSocket(socket)
|
||||||
|
})
|
||||||
|
await page.routeFromHAR(REQUESTS_HAR, { notFound: 'fallback' })
|
||||||
|
let previewRequestCount = 0
|
||||||
|
page.on('request', (request) => {
|
||||||
|
if (request.url().includes('/api/documents/175/preview/')) {
|
||||||
|
previewRequestCount++
|
||||||
|
}
|
||||||
|
})
|
||||||
|
await page.goto('/documents/175/details')
|
||||||
|
|
||||||
|
await page.locator('pngx-document-detail').waitFor()
|
||||||
|
await expect(page.getByTitle('Storage path', { exact: true })).toHaveText(
|
||||||
|
/\w+/
|
||||||
|
)
|
||||||
|
const previewWasLoaded = await page.evaluate(() => {
|
||||||
|
const detail = document.querySelector('pngx-document-detail')
|
||||||
|
const component = (window as any).ng.getComponent(detail)
|
||||||
|
component.pdfPreviewLoaded({ numPages: 1 })
|
||||||
|
return component.previewLoaded()
|
||||||
|
})
|
||||||
|
expect(previewWasLoaded).toBe(true)
|
||||||
|
const previewRequestsBeforeReload = previewRequestCount
|
||||||
|
|
||||||
|
const statusSocket = await statusSocketReady
|
||||||
|
const documentReloaded = page.waitForResponse(
|
||||||
|
(response) =>
|
||||||
|
response.url().includes('/api/documents/175/?full_perms=true') &&
|
||||||
|
response.request().method() === 'GET'
|
||||||
|
)
|
||||||
|
statusSocket.send(
|
||||||
|
JSON.stringify({
|
||||||
|
type: 'document_updated',
|
||||||
|
data: {
|
||||||
|
document_id: 175,
|
||||||
|
modified: '2026-07-26T20:00:00Z',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
await documentReloaded
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
page.getByText('Document reloaded with latest changes.').first()
|
||||||
|
).toBeVisible()
|
||||||
|
await expect
|
||||||
|
.poll(() => previewRequestCount)
|
||||||
|
.toBeGreaterThan(previewRequestsBeforeReload + 1)
|
||||||
|
})
|
||||||
|
|||||||
+71
-67
@@ -1277,7 +1277,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1577733187050997705" datatype="html">
|
<trans-unit id="1577733187050997705" datatype="html">
|
||||||
@@ -1393,8 +1393,8 @@
|
|||||||
<context context-type="linenumber">302</context>
|
<context context-type="linenumber">302</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
@@ -2184,7 +2184,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3087,11 +3087,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3647,6 +3647,21 @@
|
|||||||
<context context-type="linenumber">85</context>
|
<context context-type="linenumber">85</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3673,7 +3688,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3785,7 +3800,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6661109599266152398" datatype="html">
|
<trans-unit id="6661109599266152398" datatype="html">
|
||||||
@@ -3796,7 +3811,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5162686434580248853" datatype="html">
|
<trans-unit id="5162686434580248853" datatype="html">
|
||||||
@@ -3807,7 +3822,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8157388568390631653" datatype="html">
|
<trans-unit id="8157388568390631653" datatype="html">
|
||||||
@@ -5709,7 +5724,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -6423,14 +6438,14 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3601402187462260332" datatype="html">
|
<trans-unit id="3601402187462260332" datatype="html">
|
||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2984628903434675339" datatype="html">
|
<trans-unit id="2984628903434675339" datatype="html">
|
||||||
@@ -7444,17 +7459,6 @@
|
|||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">92</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -7962,88 +7966,88 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5758784066858623886" datatype="html">
|
<trans-unit id="5758784066858623886" datatype="html">
|
||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2218903673684131427" datatype="html">
|
<trans-unit id="2218903673684131427" datatype="html">
|
||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6357361810318120957" datatype="html">
|
<trans-unit id="6357361810318120957" datatype="html">
|
||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5154064822428631306" datatype="html">
|
<trans-unit id="5154064822428631306" datatype="html">
|
||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8462497568316256794" datatype="html">
|
<trans-unit id="8462497568316256794" datatype="html">
|
||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7967484035994732534" datatype="html">
|
<trans-unit id="7967484035994732534" datatype="html">
|
||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2907037627372942104" datatype="html">
|
<trans-unit id="2907037627372942104" datatype="html">
|
||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6435639868943916539" datatype="html">
|
<trans-unit id="6435639868943916539" datatype="html">
|
||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6142395741265832184" datatype="html">
|
<trans-unit id="6142395741265832184" datatype="html">
|
||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="651985345816518480" datatype="html">
|
<trans-unit id="651985345816518480" datatype="html">
|
||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2885986061416655600" datatype="html">
|
<trans-unit id="2885986061416655600" datatype="html">
|
||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8054,67 +8058,67 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1784543155727940353" datatype="html">
|
<trans-unit id="1784543155727940353" datatype="html">
|
||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7427704425579737895" datatype="html">
|
<trans-unit id="7427704425579737895" datatype="html">
|
||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3456881259945295697" datatype="html">
|
<trans-unit id="3456881259945295697" datatype="html">
|
||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2194092841814123758" datatype="html">
|
<trans-unit id="2194092841814123758" datatype="html">
|
||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6626387786259219838" datatype="html">
|
<trans-unit id="6626387786259219838" datatype="html">
|
||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="448882439049417053" datatype="html">
|
<trans-unit id="448882439049417053" datatype="html">
|
||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8410796510716511826" datatype="html">
|
<trans-unit id="8410796510716511826" datatype="html">
|
||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="282586936710748252" datatype="html">
|
<trans-unit id="282586936710748252" datatype="html">
|
||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8125,14 +8129,14 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="619486176823357521" datatype="html">
|
<trans-unit id="619486176823357521" datatype="html">
|
||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8143,102 +8147,102 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="302054111564709516" datatype="html">
|
<trans-unit id="302054111564709516" datatype="html">
|
||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4700389117298802932" datatype="html">
|
<trans-unit id="4700389117298802932" datatype="html">
|
||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4409560272830824468" datatype="html">
|
<trans-unit id="4409560272830824468" datatype="html">
|
||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6030453331794586802" datatype="html">
|
<trans-unit id="6030453331794586802" datatype="html">
|
||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4458954481601077369" datatype="html">
|
<trans-unit id="4458954481601077369" datatype="html">
|
||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4663705961777238777" datatype="html">
|
<trans-unit id="4663705961777238777" datatype="html">
|
||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="9043972994040261999" datatype="html">
|
<trans-unit id="9043972994040261999" datatype="html">
|
||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6172690334763056188" datatype="html">
|
<trans-unit id="6172690334763056188" datatype="html">
|
||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="968660764814228922" datatype="html">
|
<trans-unit id="968660764814228922" datatype="html">
|
||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2282118435712883014" datatype="html">
|
<trans-unit id="2282118435712883014" datatype="html">
|
||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3740891324955700797" datatype="html">
|
<trans-unit id="3740891324955700797" datatype="html">
|
||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6457245677384603573" datatype="html">
|
<trans-unit id="6457245677384603573" datatype="html">
|
||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6085793215710522488" datatype="html">
|
<trans-unit id="6085793215710522488" datatype="html">
|
||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4958946940233632319" datatype="html">
|
<trans-unit id="4958946940233632319" datatype="html">
|
||||||
@@ -11515,21 +11519,21 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5558341108007064934" datatype="html">
|
<trans-unit id="5558341108007064934" datatype="html">
|
||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1168781785897678748" datatype="html">
|
<trans-unit id="1168781785897678748" datatype="html">
|
||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3852289441366561594" datatype="html">
|
<trans-unit id="3852289441366561594" datatype="html">
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "paperless-ngx-ui",
|
"name": "paperless-ngx-ui",
|
||||||
"version": "3.0.0",
|
"version": "3.0.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"preinstall": "npx only-allow pnpm",
|
"preinstall": "npx only-allow pnpm",
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
|
|||||||
@@ -2,6 +2,9 @@ packages:
|
|||||||
- "."
|
- "."
|
||||||
minimumReleaseAge: 10080
|
minimumReleaseAge: 10080
|
||||||
trustPolicy: no-downgrade
|
trustPolicy: no-downgrade
|
||||||
|
trustPolicyExclude:
|
||||||
|
- "chokidar@4.0.3"
|
||||||
|
- "semver@6.3.1 || 5.7.2"
|
||||||
allowBuilds:
|
allowBuilds:
|
||||||
"@parcel/watcher": true
|
"@parcel/watcher": true
|
||||||
canvas: true
|
canvas: true
|
||||||
|
|||||||
@@ -304,7 +304,7 @@
|
|||||||
<div class="row mb-3">
|
<div class="row mb-3">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<p i18n>
|
<p i18n>
|
||||||
Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI.
|
Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -280,10 +280,52 @@ main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 376px) and (max-width: 768px) {
|
@media screen and (max-width: 575.98px) {
|
||||||
|
.navbar {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr auto 1fr;
|
||||||
|
grid-template-areas:
|
||||||
|
"toggler brand actions"
|
||||||
|
"search search search";
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-toggler {
|
.navbar-toggler {
|
||||||
// compensate for 2 buttons on the right
|
grid-area: toggler;
|
||||||
margin-right: 45px;
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
grid-area: brand;
|
||||||
|
min-width: 0;
|
||||||
|
max-width: 100%;
|
||||||
|
justify-self: center;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
> div,
|
||||||
|
.custom-title {
|
||||||
|
min-width: 0;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title,
|
||||||
|
.byline {
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-container {
|
||||||
|
grid-area: search;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar > ul {
|
||||||
|
grid-area: actions;
|
||||||
|
justify-self: end;
|
||||||
|
flex-wrap: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -293,13 +335,6 @@ main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 345px) {
|
|
||||||
.custom-title {
|
|
||||||
max-width: 110px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
:host ::ng-deep .dropdown.show .dropdown-toggle,
|
:host ::ng-deep .dropdown.show .dropdown-toggle,
|
||||||
:host ::ng-deep .dropdown-toggle:hover {
|
:host ::ng-deep .dropdown-toggle:hover {
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
|||||||
@@ -9,14 +9,14 @@
|
|||||||
@for (message of messages(); track message) {
|
@for (message of messages(); track message) {
|
||||||
<div class="message d-flex flex-row small" [class.justify-content-end]="message.role === 'user'">
|
<div class="message d-flex flex-row small" [class.justify-content-end]="message.role === 'user'">
|
||||||
<div class="p-2 m-2" [class.bg-body]="message.role === 'user'">
|
<div class="p-2 m-2" [class.bg-body]="message.role === 'user'">
|
||||||
<span>
|
<span class="text-break">
|
||||||
{{ message.content }}
|
{{ message.content }}
|
||||||
@if (message.isStreaming) { <span class="blinking-cursor">|</span> }
|
@if (message.isStreaming) { <span class="blinking-cursor">|</span> }
|
||||||
</span>
|
</span>
|
||||||
@if (message.role === 'assistant' && message.references?.length) {
|
@if (message.role === 'assistant' && message.references?.length) {
|
||||||
<div class="chat-references list-group mt-3">
|
<div class="chat-references list-group mt-3">
|
||||||
@for (reference of message.references; track reference.id) {
|
@for (reference of message.references; track reference.id) {
|
||||||
<a class="list-group-item list-group-item-action text-primary" [routerLink]="['/documents', reference.id]">
|
<a class="list-group-item list-group-item-action d-flex text-primary text-break" [routerLink]="['/documents', reference.id]">
|
||||||
<i-bs width="0.9em" height="0.9em" name="file-text" class="me-1"></i-bs><span>{{ reference.title }}</span>
|
<i-bs width="0.9em" height="0.9em" name="file-text" class="me-1"></i-bs><span>{{ reference.title }}</span>
|
||||||
</a>
|
</a>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
.chat-messages {
|
.chat-messages {
|
||||||
max-height: 350px;
|
max-height: 350px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-references {
|
.chat-references {
|
||||||
|
|||||||
@@ -17,6 +17,6 @@
|
|||||||
|
|
||||||
<ng-template #popoverContent>
|
<ng-template #popoverContent>
|
||||||
<div>
|
<div>
|
||||||
{{confirmMessage}} <button class="btn btn-link btn-sm text-danger p-0 m-0 lh-1" type="button" (click)="onConfirm($event)">Yes</button>
|
{{confirmMessage}} <button class="btn btn-link btn-sm text-danger p-0 m-0 lh-1" type="button" (click)="onConfirm($event)" i18n>Yes</button>
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|||||||
@@ -283,6 +283,22 @@ describe('PngxPdfViewerComponent', () => {
|
|||||||
expect(mockViewer.currentPageNumber).toBe(1)
|
expect(mockViewer.currentPageNumber).toBe(1)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('reloads when the source revision changes', () => {
|
||||||
|
const resetSpy = jest.spyOn(component as any, 'resetViewerState')
|
||||||
|
const loadSpy = jest
|
||||||
|
.spyOn(component as any, 'loadDocument')
|
||||||
|
.mockImplementation(() => {})
|
||||||
|
component.src = 'test.pdf'
|
||||||
|
component.sourceRevision = 1
|
||||||
|
|
||||||
|
component.ngOnChanges({
|
||||||
|
sourceRevision: new SimpleChange(0, 1, false),
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(resetSpy).toHaveBeenCalled()
|
||||||
|
expect(loadSpy).toHaveBeenCalled()
|
||||||
|
})
|
||||||
|
|
||||||
it('applies viewer state after view init when already loaded', () => {
|
it('applies viewer state after view init when already loaded', () => {
|
||||||
const applySpy = jest.spyOn(component as any, 'applyViewerState')
|
const applySpy = jest.spyOn(component as any, 'applyViewerState')
|
||||||
;(component as any).hasLoaded = true
|
;(component as any).hasLoaded = true
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ export class PngxPdfViewerComponent
|
|||||||
private readonly document = inject<Document>(DOCUMENT)
|
private readonly document = inject<Document>(DOCUMENT)
|
||||||
|
|
||||||
@Input() src!: string
|
@Input() src!: string
|
||||||
|
@Input() sourceRevision = 0
|
||||||
@Input() password?: string
|
@Input() password?: string
|
||||||
@Input() page?: number
|
@Input() page?: number
|
||||||
@Output() pageChange = new EventEmitter<number>()
|
@Output() pageChange = new EventEmitter<number>()
|
||||||
@@ -93,7 +94,7 @@ export class PngxPdfViewerComponent
|
|||||||
}
|
}
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges): void {
|
ngOnChanges(changes: SimpleChanges): void {
|
||||||
if (changes['src'] || changes['password']) {
|
if (changes['src'] || changes['sourceRevision'] || changes['password']) {
|
||||||
this.resetViewerState()
|
this.resetViewerState()
|
||||||
if (this.src) {
|
if (this.src) {
|
||||||
this.loadDocument()
|
this.loadDocument()
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<a [href]="link ?? previewUrl" class="{{linkClasses}}" [target]="linkTarget" [title]="linkTitle"
|
<a [href]="link ?? previewUrl" class="{{linkClasses}}" [target]="linkTarget" [title]="linkTitle"
|
||||||
[ngbPopover]="previewContent" [popoverTitle]="document.title | documentTitle" container="body"
|
[ngbPopover]="previewContent" [popoverTitle]="document.title | documentTitle" container="body"
|
||||||
autoClose="true" [popoverClass]="popoverClass()" (mouseenter)="mouseEnterPreview()" (mouseleave)="mouseLeavePreview()" #popover="ngbPopover">
|
autoClose="true" [popoverClass]="popoverClass()" [popperOptions]="popperOptions"
|
||||||
|
(mouseenter)="mouseEnterPreview()" (mouseleave)="mouseLeavePreview()" #popover="ngbPopover">
|
||||||
<ng-content></ng-content>
|
<ng-content></ng-content>
|
||||||
</a>
|
</a>
|
||||||
<ng-template #previewContent>
|
<ng-template #previewContent>
|
||||||
|
|||||||
@@ -67,6 +67,10 @@ describe('PreviewPopupComponent', () => {
|
|||||||
expect(component.useNativePdfViewer).toBeTruthy()
|
expect(component.useNativePdfViewer).toBeTruthy()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('should use fixed positioning for the preview popover', () => {
|
||||||
|
expect(component.popperOptions({}).strategy).toEqual('fixed')
|
||||||
|
})
|
||||||
|
|
||||||
it('should render object if native PDF viewer enabled', () => {
|
it('should render object if native PDF viewer enabled', () => {
|
||||||
settingsService.set(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, true)
|
settingsService.set(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, true)
|
||||||
component.popover.open()
|
component.popover.open()
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
ViewChild,
|
ViewChild,
|
||||||
} from '@angular/core'
|
} from '@angular/core'
|
||||||
import { NgbPopover, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbPopover, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap'
|
||||||
|
import { Options } from '@popperjs/core'
|
||||||
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
||||||
import { first, Subject, takeUntil } from 'rxjs'
|
import { first, Subject, takeUntil } from 'rxjs'
|
||||||
import { Document } from 'src/app/data/document'
|
import { Document } from 'src/app/data/document'
|
||||||
@@ -74,6 +75,11 @@ export class PreviewPopupComponent implements OnDestroy {
|
|||||||
|
|
||||||
readonly popoverClass = signal('shadow popover-preview')
|
readonly popoverClass = signal('shadow popover-preview')
|
||||||
|
|
||||||
|
readonly popperOptions = (options: Partial<Options>): Partial<Options> => ({
|
||||||
|
...options,
|
||||||
|
strategy: 'fixed',
|
||||||
|
})
|
||||||
|
|
||||||
get renderAsObject(): boolean {
|
get renderAsObject(): boolean {
|
||||||
return (this.isPdf && this.useNativePdfViewer) || !this.isPdf
|
return (this.isPdf && this.useNativePdfViewer) || !this.isPdf
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -472,6 +472,7 @@
|
|||||||
<div class="preview-sticky pdf-viewer-container">
|
<div class="preview-sticky pdf-viewer-container">
|
||||||
<pngx-pdf-viewer
|
<pngx-pdf-viewer
|
||||||
[src]="pdfSource()"
|
[src]="pdfSource()"
|
||||||
|
[sourceRevision]="previewRevision()"
|
||||||
[password]="pdfPassword()"
|
[password]="pdfPassword()"
|
||||||
[renderMode]="PdfRenderMode.All"
|
[renderMode]="PdfRenderMode.All"
|
||||||
[page]="previewCurrentPage()" (pageChange)="previewCurrentPage.set($event)"
|
[page]="previewCurrentPage()" (pageChange)="previewCurrentPage.set($event)"
|
||||||
|
|||||||
@@ -1602,6 +1602,7 @@ describe('DocumentDetailComponent', () => {
|
|||||||
expect(openDoc.__changedFields).toEqual([])
|
expect(openDoc.__changedFields).toEqual([])
|
||||||
expect(setDirtySpy).toHaveBeenCalledWith(openDoc, false)
|
expect(setDirtySpy).toHaveBeenCalledWith(openDoc, false)
|
||||||
expect(saveSpy).toHaveBeenCalled()
|
expect(saveSpy).toHaveBeenCalled()
|
||||||
|
expect(component.previewRevision()).toBe(1)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should ignore incoming update for a different document id', () => {
|
it('should ignore incoming update for a different document id', () => {
|
||||||
|
|||||||
@@ -249,6 +249,7 @@ export class DocumentDetailComponent
|
|||||||
titleSubject: Subject<string> = new Subject()
|
titleSubject: Subject<string> = new Subject()
|
||||||
readonly previewUrl = signal<string>(undefined)
|
readonly previewUrl = signal<string>(undefined)
|
||||||
readonly pdfSource = signal<string>(undefined)
|
readonly pdfSource = signal<string>(undefined)
|
||||||
|
readonly previewRevision = signal(0)
|
||||||
readonly pdfPassword = signal<string>(undefined)
|
readonly pdfPassword = signal<string>(undefined)
|
||||||
readonly thumbUrl = signal<string>(undefined)
|
readonly thumbUrl = signal<string>(undefined)
|
||||||
readonly previewText = signal<string>(undefined)
|
readonly previewText = signal<string>(undefined)
|
||||||
@@ -609,6 +610,9 @@ export class DocumentDetailComponent
|
|||||||
.subscribe()
|
.subscribe()
|
||||||
}
|
}
|
||||||
this.updateComponent(useDoc)
|
this.updateComponent(useDoc)
|
||||||
|
if (forceRemote) {
|
||||||
|
this.previewRevision.update((revision) => revision + 1)
|
||||||
|
}
|
||||||
this.titleSubject
|
this.titleSubject
|
||||||
.pipe(
|
.pipe(
|
||||||
debounceTime(1000),
|
debounceTime(1000),
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<input #textFilterInput class="form-control form-control-sm" type="text"
|
<input #textFilterInput class="form-control form-control-sm" type="text"
|
||||||
[disabled]="textFilterModifierIsNull"
|
[disabled]="textFilterModifierIsNull"
|
||||||
[(ngModel)]="textFilter"
|
[(ngModel)]="textFilter"
|
||||||
(keyup)="textFilterKeyup($event)"
|
(keydown)="textFilterKeydown($event)"
|
||||||
[ngbTypeahead]="searchAutoComplete"
|
[ngbTypeahead]="searchAutoComplete"
|
||||||
(selectItem)="itemSelected($event)"
|
(selectItem)="itemSelected($event)"
|
||||||
[readonly]="textFilterTarget === 'fulltext-morelike'">
|
[readonly]="textFilterTarget === 'fulltext-morelike'">
|
||||||
|
|||||||
+3
-3
@@ -2180,17 +2180,17 @@ describe('FilterEditorComponent', () => {
|
|||||||
it('should support Enter / Esc key on text field', () => {
|
it('should support Enter / Esc key on text field', () => {
|
||||||
component.textFilterInput.nativeElement.value = 'foo'
|
component.textFilterInput.nativeElement.value = 'foo'
|
||||||
component.textFilterInput.nativeElement.dispatchEvent(
|
component.textFilterInput.nativeElement.dispatchEvent(
|
||||||
new KeyboardEvent('keyup', { key: 'Enter' })
|
new KeyboardEvent('keydown', { key: 'Enter' })
|
||||||
)
|
)
|
||||||
expect(component.textFilter).toEqual('foo')
|
expect(component.textFilter).toEqual('foo')
|
||||||
component.textFilterInput.nativeElement.value = 'foo bar'
|
component.textFilterInput.nativeElement.value = 'foo bar'
|
||||||
component.textFilterInput.nativeElement.dispatchEvent(
|
component.textFilterInput.nativeElement.dispatchEvent(
|
||||||
new KeyboardEvent('keyup', { key: 'Escape' })
|
new KeyboardEvent('keydown', { key: 'Escape' })
|
||||||
)
|
)
|
||||||
expect(component.textFilter).toEqual('')
|
expect(component.textFilter).toEqual('')
|
||||||
const blurSpy = jest.spyOn(component.textFilterInput.nativeElement, 'blur')
|
const blurSpy = jest.spyOn(component.textFilterInput.nativeElement, 'blur')
|
||||||
component.textFilterInput.nativeElement.dispatchEvent(
|
component.textFilterInput.nativeElement.dispatchEvent(
|
||||||
new KeyboardEvent('keyup', { key: 'Escape' })
|
new KeyboardEvent('keydown', { key: 'Escape' })
|
||||||
)
|
)
|
||||||
expect(blurSpy).toHaveBeenCalled()
|
expect(blurSpy).toHaveBeenCalled()
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1312,7 +1312,7 @@ export class FilterEditorComponent
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textFilterKeyup(event: KeyboardEvent) {
|
textFilterKeydown(event: KeyboardEvent) {
|
||||||
if (event.key == 'Enter') {
|
if (event.key == 'Enter') {
|
||||||
const filterString = (
|
const filterString = (
|
||||||
this.textFilterInput.nativeElement as HTMLInputElement
|
this.textFilterInput.nativeElement as HTMLInputElement
|
||||||
|
|||||||
+24
-1
@@ -18,6 +18,7 @@ import {
|
|||||||
DocumentAttributesComponent,
|
DocumentAttributesComponent,
|
||||||
DocumentAttributesSectionKind,
|
DocumentAttributesSectionKind,
|
||||||
} from './document-attributes.component'
|
} from './document-attributes.component'
|
||||||
|
import { ManagementListComponent } from './management-list/management-list.component'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pngx-dummy-section',
|
selector: 'pngx-dummy-section',
|
||||||
@@ -170,10 +171,32 @@ describe('DocumentAttributesComponent', () => {
|
|||||||
expect(component.activeManagementList).toBeNull()
|
expect(component.activeManagementList).toBeNull()
|
||||||
|
|
||||||
component.activeNavID.set(1)
|
component.activeNavID.set(1)
|
||||||
|
const managementList = Object.create(ManagementListComponent.prototype)
|
||||||
|
component.activeOutlet = {
|
||||||
|
componentInstance: managementList,
|
||||||
|
} as any
|
||||||
expect(component.activeSection.kind).toBe(
|
expect(component.activeSection.kind).toBe(
|
||||||
DocumentAttributesSectionKind.ManagementList
|
DocumentAttributesSectionKind.ManagementList
|
||||||
)
|
)
|
||||||
expect(component.activeManagementList).toBeDefined()
|
expect(component.activeManagementList).toBe(managementList)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should use the current component instance when the outlet is reused', () => {
|
||||||
|
jest.spyOn(permissionsService, 'currentUserCan').mockReturnValue(true)
|
||||||
|
component.activeNavID.set(1)
|
||||||
|
const firstManagementList = Object.create(ManagementListComponent.prototype)
|
||||||
|
const secondManagementList = Object.create(
|
||||||
|
ManagementListComponent.prototype
|
||||||
|
)
|
||||||
|
component.activeOutlet = {
|
||||||
|
componentInstance: firstManagementList,
|
||||||
|
} as any
|
||||||
|
|
||||||
|
expect(component.activeManagementList).toBe(firstManagementList)
|
||||||
|
|
||||||
|
component.activeOutlet.componentInstance = secondManagementList
|
||||||
|
|
||||||
|
expect(component.activeManagementList).toBe(secondManagementList)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should return activeCustomFields correctly', () => {
|
it('should return activeCustomFields correctly', () => {
|
||||||
|
|||||||
+3
-6
@@ -132,11 +132,8 @@ export class DocumentAttributesComponent implements OnInit, OnDestroy {
|
|||||||
]
|
]
|
||||||
|
|
||||||
@ViewChild('activeOutlet', { read: NgComponentOutlet })
|
@ViewChild('activeOutlet', { read: NgComponentOutlet })
|
||||||
set activeOutlet(outlet: NgComponentOutlet | undefined) {
|
activeOutlet: NgComponentOutlet
|
||||||
this.activeComponent.set(outlet?.componentInstance ?? null)
|
|
||||||
}
|
|
||||||
|
|
||||||
readonly activeComponent = signal<unknown>(null)
|
|
||||||
readonly activeNavID = signal<number>(null)
|
readonly activeNavID = signal<number>(null)
|
||||||
|
|
||||||
get visibleSections(): DocumentAttributesSection[] {
|
get visibleSections(): DocumentAttributesSection[] {
|
||||||
@@ -161,14 +158,14 @@ export class DocumentAttributesComponent implements OnInit, OnDestroy {
|
|||||||
this.activeSection?.kind !== DocumentAttributesSectionKind.ManagementList
|
this.activeSection?.kind !== DocumentAttributesSectionKind.ManagementList
|
||||||
)
|
)
|
||||||
return null
|
return null
|
||||||
const instance = this.activeComponent()
|
const instance = this.activeOutlet?.componentInstance
|
||||||
return instance instanceof ManagementListComponent ? instance : null
|
return instance instanceof ManagementListComponent ? instance : null
|
||||||
}
|
}
|
||||||
|
|
||||||
get activeCustomFields(): CustomFieldsComponent | null {
|
get activeCustomFields(): CustomFieldsComponent | null {
|
||||||
if (this.activeSection?.kind !== DocumentAttributesSectionKind.CustomFields)
|
if (this.activeSection?.kind !== DocumentAttributesSectionKind.CustomFields)
|
||||||
return null
|
return null
|
||||||
const instance = this.activeComponent()
|
const instance = this.activeOutlet?.componentInstance
|
||||||
return instance instanceof CustomFieldsComponent ? instance : null
|
return instance instanceof CustomFieldsComponent ? instance : null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -108,6 +108,18 @@ describe('PermissionsService', () => {
|
|||||||
actionKey: 'View', // PermissionAction.View
|
actionKey: 'View', // PermissionAction.View
|
||||||
typeKey: 'Document', // PermissionType.Document
|
typeKey: 'Document', // PermissionType.Document
|
||||||
})
|
})
|
||||||
|
expect(
|
||||||
|
permissionsService.getPermissionKeys('view_global_statistics')
|
||||||
|
).toEqual({
|
||||||
|
actionKey: 'View', // PermissionAction.View
|
||||||
|
typeKey: 'GlobalStatistics', // PermissionType.GlobalStatistics
|
||||||
|
})
|
||||||
|
expect(
|
||||||
|
permissionsService.getPermissionKeys('view_system_monitoring')
|
||||||
|
).toEqual({
|
||||||
|
actionKey: 'View', // PermissionAction.View
|
||||||
|
typeKey: 'SystemMonitoring', // PermissionType.SystemMonitoring
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
it('correctly checks explicit global permissions', () => {
|
it('correctly checks explicit global permissions', () => {
|
||||||
|
|||||||
@@ -110,19 +110,16 @@ export class PermissionsService {
|
|||||||
actionKey: string
|
actionKey: string
|
||||||
typeKey: string
|
typeKey: string
|
||||||
} {
|
} {
|
||||||
const matches = permissionStr.match(/(.+)_/)
|
|
||||||
let typeKey
|
let typeKey
|
||||||
let actionKey
|
let actionKey
|
||||||
if (matches?.length > 0) {
|
const actionIndex = Object.values(PermissionAction).findIndex((action) =>
|
||||||
const action = matches[1]
|
permissionStr.startsWith(`${action}_`)
|
||||||
const actionIndex = Object.values(PermissionAction).indexOf(
|
)
|
||||||
action as PermissionAction
|
if (actionIndex > -1) {
|
||||||
)
|
const action = Object.values(PermissionAction)[actionIndex]
|
||||||
if (actionIndex > -1) {
|
actionKey = Object.keys(PermissionAction)[actionIndex]
|
||||||
actionKey = Object.keys(PermissionAction)[actionIndex]
|
|
||||||
}
|
|
||||||
const typeIndex = Object.values(PermissionType).indexOf(
|
const typeIndex = Object.values(PermissionType).indexOf(
|
||||||
permissionStr.replace(action, '%s') as PermissionType
|
permissionStr.replace(`${action}_`, '%s_') as PermissionType
|
||||||
)
|
)
|
||||||
if (typeIndex > -1) {
|
if (typeIndex > -1) {
|
||||||
typeKey = Object.keys(PermissionType)[typeIndex]
|
typeKey = Object.keys(PermissionType)[typeIndex]
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import {
|
|||||||
estimateBrightnessForColor,
|
estimateBrightnessForColor,
|
||||||
hexToHsl,
|
hexToHsl,
|
||||||
} from 'src/app/utils/color'
|
} from 'src/app/utils/color'
|
||||||
import { environment } from 'src/environments/environment'
|
import { DEFAULT_APP_TITLE, environment } from 'src/environments/environment'
|
||||||
import { DEFAULT_DISPLAY_FIELDS, DisplayField } from '../data/document'
|
import { DEFAULT_DISPLAY_FIELDS, DisplayField } from '../data/document'
|
||||||
import { SavedView } from '../data/saved-view'
|
import { SavedView } from '../data/saved-view'
|
||||||
import {
|
import {
|
||||||
@@ -359,9 +359,8 @@ export class SettingsService {
|
|||||||
}),
|
}),
|
||||||
tap((uisettings) => {
|
tap((uisettings) => {
|
||||||
this.assignSafeSettings(uisettings.settings)
|
this.assignSafeSettings(uisettings.settings)
|
||||||
if (this.get(SETTINGS_KEYS.APP_TITLE)?.length) {
|
environment.appTitle =
|
||||||
environment.appTitle = this.get(SETTINGS_KEYS.APP_TITLE)
|
this.get(SETTINGS_KEYS.APP_TITLE) || DEFAULT_APP_TITLE
|
||||||
}
|
|
||||||
this.maybeMigrateSettings()
|
this.maybeMigrateSettings()
|
||||||
// to update lang cookie
|
// to update lang cookie
|
||||||
if (this.settings['language']?.length)
|
if (this.settings['language']?.length)
|
||||||
|
|||||||
@@ -14,4 +14,20 @@ describe('text search utilities', () => {
|
|||||||
expect(matchesSearchText('Tax\u00e9s 2026', 'taxe 26')).toBeTruthy()
|
expect(matchesSearchText('Tax\u00e9s 2026', 'taxe 26')).toBeTruthy()
|
||||||
expect(matchesSearchText('taxes 2026', 'tax receipt')).toBeFalsy()
|
expect(matchesSearchText('taxes 2026', 'tax receipt')).toBeFalsy()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('matches a large set of tag names without blocking input', () => {
|
||||||
|
const tagNames = Array.from(
|
||||||
|
{ length: 1280 },
|
||||||
|
(_, index) =>
|
||||||
|
`Customer Party ${index} Jos\u00e9 M\u00fcller \u00c5ngstr\u00f6m`
|
||||||
|
)
|
||||||
|
|
||||||
|
const start = performance.now()
|
||||||
|
const matches = tagNames.filter((name) => matchesSearchText(name, 'party'))
|
||||||
|
const duration = performance.now() - start
|
||||||
|
|
||||||
|
expect(matches).toHaveLength(tagNames.length)
|
||||||
|
// The previous implementation took roughly 500 ms for this workload.
|
||||||
|
expect(duration).toBeLessThan(250)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,10 +1,17 @@
|
|||||||
import { normalizeSync } from 'normalize-diacritics'
|
import { diacritics } from 'normalize-diacritics/diacritics'
|
||||||
|
|
||||||
export type SearchTextValue =
|
export type SearchTextValue =
|
||||||
string | number | boolean | bigint | null | undefined
|
string | number | boolean | bigint | null | undefined
|
||||||
|
|
||||||
export function normalizeSearchText(value: SearchTextValue): string {
|
export function normalizeSearchText(value: SearchTextValue): string {
|
||||||
return normalizeSync(String(value ?? '')).toLocaleLowerCase()
|
const normalized = diacritics.reduce(
|
||||||
|
(text, replacement) => {
|
||||||
|
return text.replace(replacement.diacritics, replacement.letter)
|
||||||
|
},
|
||||||
|
String(value ?? '')
|
||||||
|
)
|
||||||
|
|
||||||
|
return normalized.toLocaleLowerCase()
|
||||||
}
|
}
|
||||||
|
|
||||||
export function matchesSearchText(
|
export function matchesSearchText(
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
const base_url = new URL(document.baseURI)
|
const base_url = new URL(document.baseURI)
|
||||||
|
|
||||||
|
export const DEFAULT_APP_TITLE = 'Paperless-ngx'
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
apiBaseUrl: document.baseURI + 'api/',
|
apiBaseUrl: document.baseURI + 'api/',
|
||||||
apiVersion: '10', // match src/paperless/settings.py
|
apiVersion: '10', // match src/paperless/settings.py
|
||||||
appTitle: 'Paperless-ngx',
|
appTitle: DEFAULT_APP_TITLE,
|
||||||
tag: 'prod',
|
tag: 'prod',
|
||||||
version: '3.0.0',
|
version: '3.0.4',
|
||||||
webSocketHost: window.location.host,
|
webSocketHost: window.location.host,
|
||||||
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
|
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
|
||||||
webSocketBaseUrl: base_url.pathname + 'ws/',
|
webSocketBaseUrl: base_url.pathname + 'ws/',
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
// `ng build --configuration production` replaces `environment.ts` with `environment.prod.ts`.
|
// `ng build --configuration production` replaces `environment.ts` with `environment.prod.ts`.
|
||||||
// The list of file replacements can be found in `angular.json`.
|
// The list of file replacements can be found in `angular.json`.
|
||||||
|
|
||||||
|
export const DEFAULT_APP_TITLE = 'Paperless-ngx'
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
apiBaseUrl: 'http://localhost:8000/api/',
|
apiBaseUrl: 'http://localhost:8000/api/',
|
||||||
apiVersion: '10',
|
apiVersion: '10',
|
||||||
appTitle: 'Paperless-ngx',
|
appTitle: DEFAULT_APP_TITLE,
|
||||||
tag: 'dev',
|
tag: 'dev',
|
||||||
version: 'DEVELOPMENT',
|
version: 'DEVELOPMENT',
|
||||||
webSocketHost: 'localhost:8000',
|
webSocketHost: 'localhost:8000',
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Wis</target>
|
<target state="translated">Wis</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Voer wagwoord in</target>
|
<target state="translated">Voer wagwoord in</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout by ophaal van metadata</target>
|
<target state="translated">Fout by ophaal van metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout by die laai van die inhoud: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Fout by die laai van die inhoud: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout by ophaal van voorstelle.</target>
|
<target state="translated">Fout by ophaal van voorstelle.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout by bewaar van dokument</target>
|
<target state="translated">Fout by bewaar van dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eenmalige migrasie van instellings na die databasis is suksesvol voltooi!</target>
|
<target state="translated">Eenmalige migrasie van instellings na die databasis is suksesvol voltooi!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kan nie instellings na die databasis migreer nie, probeer handmatig bewaar.</target>
|
<target state="translated">Kan nie instellings na die databasis migreer nie, probeer handmatig bewaar.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">U kan die toer weer vanuit die instellingsblad begin.</target>
|
<target state="translated">U kan die toer weer vanuit die instellingsblad begin.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Clear</target>
|
<target state="needs-translation">Clear</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Enter Password</target>
|
<target state="needs-translation">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">الصلاحيات الافتراضية</target>
|
<target state="translated">الصلاحيات الافتراضية</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">تنظيف</target>
|
<target state="translated">تنظيف</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">نعم</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطأ أثناء تحميل المعاينة</target>
|
<target state="translated">خطأ أثناء تحميل المعاينة</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">تصفية حسب المالك</target>
|
<target state="translated">تصفية حسب المالك</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">نعم</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">أدخل كلمة المرور</target>
|
<target state="translated">أدخل كلمة المرور</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطأ في استرجاع البيانات الوصفية</target>
|
<target state="translated">خطأ في استرجاع البيانات الوصفية</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">حدث خطأ في تحميل المحتوى<x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">حدث خطأ في تحميل المحتوى<x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">المستند التالي</target>
|
<target state="translated">المستند التالي</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">المستند السابق</target>
|
<target state="translated">المستند السابق</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">حفظ المستند</target>
|
<target state="translated">حفظ المستند</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطأ في استرداد الاقتراحات.</target>
|
<target state="translated">خطأ في استرداد الاقتراحات.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">تم حفظ المستند "<x id="PH" equiv-text="newValues.title"/>بنجاح.</target>
|
<target state="translated">تم حفظ المستند "<x id="PH" equiv-text="newValues.title"/>بنجاح.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطأ أثناء حفظ المستند</target>
|
<target state="translated">خطأ أثناء حفظ المستند</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطأ أثناء حذف المستند</target>
|
<target state="translated">خطأ أثناء حذف المستند</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ستؤدي هذه العملية إلى إعادة إنشاء ملف الأرشيف لهذا المستند بشكل دائم.</target>
|
<target state="translated">ستؤدي هذه العملية إلى إعادة إنشاء ملف الأرشيف لهذا المستند بشكل دائم.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">سيتم إعادة إنشاء ملف الأرشيف بالإعدادات الحالية.</target>
|
<target state="translated">سيتم إعادة إنشاء ملف الأرشيف بالإعدادات الحالية.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطأ أثناء تنفيذ العملية</target>
|
<target state="translated">خطأ أثناء تنفيذ العملية</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">احتواء الصفحة</target>
|
<target state="translated">احتواء الصفحة</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">تم بنجاح ترحيل الإعدادات مرة واحدة إلى قاعدة البيانات!</target>
|
<target state="translated">تم بنجاح ترحيل الإعدادات مرة واحدة إلى قاعدة البيانات!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">غير قادر على ترحيل الإعدادات إلى قاعدة البيانات، الرجاء محاولة الحفظ يدوياً.</target>
|
<target state="translated">غير قادر على ترحيل الإعدادات إلى قاعدة البيانات، الرجاء محاولة الحفظ يدوياً.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">يمكنك إعادة تشغيل الجولة من صفحة الإعدادات.</target>
|
<target state="translated">يمكنك إعادة تشغيل الجولة من صفحة الإعدادات.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ачысціць</target>
|
<target state="translated">Ачысціць</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Так</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Так</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Увядзіце пароль</target>
|
<target state="translated">Увядзіце пароль</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Паспяхова выканана аднаразовая міграцыя налад у базу!</target>
|
<target state="translated">Паспяхова выканана аднаразовая міграцыя налад у базу!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Немагчыма перанесці налады ў базу дадзеных, паспрабуйце захаваць уручную.</target>
|
<target state="translated">Немагчыма перанесці налады ў базу дадзеных, паспрабуйце захаваць уручную.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Права по подразбиране</target>
|
<target state="translated">Права по подразбиране</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Настройките се прилагат към този потребителски акаунт за обекти (маркери, правила за поща и т. н., но не и документи), създадени чрез уеб интерфейса. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Изчистване</target>
|
<target state="translated">Изчистване</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Да</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при зареждане на визуализацията</target>
|
<target state="translated">Грешка при зареждане на визуализацията</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Отворете предварителен преглед</target>
|
<target state="translated">Отворете предварителен преглед</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Филтър по собственик</target>
|
<target state="translated">Филтър по собственик</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Да</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Въведете парола</target>
|
<target state="translated">Въведете парола</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при извличане на метаданни</target>
|
<target state="translated">Грешка при извличане на метаданни</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Възникна грешка при зареждане на съдържание: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Възникна грешка при зареждане на съдържание: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Следващ документ</target>
|
<target state="translated">Следващ документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Предишен документ</target>
|
<target state="translated">Предишен документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Запазете документ</target>
|
<target state="translated">Запазете документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Запази и затвори / следващ</target>
|
<target state="translated">Запази и затвори / следващ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при извличане на предложения.</target>
|
<target state="translated">Грешка при извличане на предложения.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Документ "<x id="PH" equiv-text="newValues.title"/>" запазен успешно.</target>
|
<target state="translated">Документ "<x id="PH" equiv-text="newValues.title"/>" запазен успешно.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при запазване на документа</target>
|
<target state="translated">Грешка при запазване на документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при изтриване на документа</target>
|
<target state="translated">Грешка при изтриване на документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Тази операция ще пресъздаде архивен файл за този документ.</target>
|
<target state="translated">Тази операция ще пресъздаде архивен файл за този документ.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Архивният файл ще бъде отново генериран с текущите настройки.</target>
|
<target state="translated">Архивният файл ще бъде отново генериран с текущите настройки.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при изпълнение на операцията</target>
|
<target state="translated">Грешка при изпълнение на операцията</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Грешка при изтегляне на документа</target>
|
<target state="translated">Грешка при изтегляне на документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Побиране на страницата</target>
|
<target state="translated">Побиране на страницата</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Възникна грешка при зареждането на tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Възникна грешка при зареждането на tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Успешно завършена еднократна миграция на настройките към базата данни!</target>
|
<target state="translated">Успешно завършена еднократна миграция на настройките към базата данни!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Неуспешно мигриране на настройки в база данни, моля опитайте ръчно запазване.</target>
|
<target state="translated">Неуспешно мигриране на настройки в база данни, моля опитайте ръчно запазване.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Можете да рестартирате обиколката от страницата с настройки.</target>
|
<target state="translated">Можете да рестартирате обиколката от страницата с настройки.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Editor PDF</target>
|
<target state="translated">Editor PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Permisos per defecte</target>
|
<target state="translated">Permisos per defecte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> S'apliquen a aquest compte d'usuari per als objectes (etiquetes, regles de correu, etc.) creats des de la interfície web. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -1996,7 +1996,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||||
<context context-type="linenumber">15</context>
|
<context context-type="linenumber">15</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Dismiss all</target>
|
<target state="translated">Descarta-ho tot</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616102757855967475" datatype="html">
|
<trans-unit id="1616102757855967475" datatype="html">
|
||||||
<source>All</source>
|
<source>All</source>
|
||||||
@@ -2076,7 +2076,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||||
<context context-type="linenumber">96</context>
|
<context context-type="linenumber">96</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Search tasks</target>
|
<target state="translated">Cerca tasques</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6849725902312323996" datatype="html">
|
<trans-unit id="6849725902312323996" datatype="html">
|
||||||
<source>Reset filters</source>
|
<source>Reset filters</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -2696,7 +2696,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">348</context>
|
<context context-type="linenumber">348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Confirm Dismiss All</target>
|
<target state="translated">Confirma Descarta Tot</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4157200209636243740" datatype="html">
|
<trans-unit id="4157200209636243740" datatype="html">
|
||||||
<source>Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</source>
|
<source>Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</source>
|
||||||
@@ -2704,7 +2704,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">349</context>
|
<context context-type="linenumber">349</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</target>
|
<target state="translated"/>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8149502458056418229" datatype="html">
|
<trans-unit id="8149502458056418229" datatype="html">
|
||||||
<source>Success. New document id <x id="PH" equiv-text="documentId"/> created</source>
|
<source>Success. New document id <x id="PH" equiv-text="documentId"/> created</source>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Neteja</target>
|
<target state="translated">Neteja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Sí</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Treure protecció de contrasenya</target>
|
<target state="translated">Treure protecció de contrasenya</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Crear una còpia desprotegida de l'arxiu existent.</target>
|
<target state="translated">Crear una còpia desprotegida de l'arxiu existent.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Inici</target>
|
<target state="translated">Inici</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error carregant previsualització</target>
|
<target state="translated">Error carregant previsualització</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Obrir previsualització</target>
|
<target state="translated">Obrir previsualització</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrar per propietari</target>
|
<target state="translated">Filtrar per propietari</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Sí</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Introdueix Contrasenya</target>
|
<target state="translated">Introdueix Contrasenya</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error recuperant les metadades</target>
|
<target state="translated">Error recuperant les metadades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error carregant contingut: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Error carregant contingut: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document Actualitzat</target>
|
<target state="translated">Document Actualitzat</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document actualitzat a <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Document actualitzat a <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Recarrega per descartar les edicions locals no desades i carregar la darrera versió remota.</target>
|
<target state="translated">Recarrega per descartar les edicions locals no desades i carregar la darrera versió remota.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Recarrega</target>
|
<target state="translated">Recarrega</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document recarregat amb els darrers reptes.</target>
|
<target state="translated">Document recarregat amb els darrers reptes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document recarregat.</target>
|
<target state="translated">Document recarregat.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Següent document</target>
|
<target state="translated">Següent document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document Anterior</target>
|
<target state="translated">Document Anterior</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Desar Document</target>
|
<target state="translated">Desar Document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Desa i tanca/següent</target>
|
<target state="translated">Desa i tanca/següent</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error recuperant el contingut de la versió</target>
|
<target state="translated">Error recuperant el contingut de la versió</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error recuperant els suggeriments.</target>
|
<target state="translated">Error recuperant els suggeriments.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document "<x id="PH" equiv-text="newValues.title"/>" desat satisfactòriament.</target>
|
<target state="translated">Document "<x id="PH" equiv-text="newValues.title"/>" desat satisfactòriament.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error guardant document</target>
|
<target state="translated">Error guardant document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error esborrant document</target>
|
<target state="translated">Error esborrant document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Aquesta operació recrearà l'arxivat per aquest document.</target>
|
<target state="translated">Aquesta operació recrearà l'arxivat per aquest document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Els arxius arxivats seran regenerats amb les opcions actuals.</target>
|
<target state="translated">Els arxius arxivats seran regenerats amb les opcions actuals.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error executant operació</target>
|
<target state="translated">Error executant operació</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error descarregant document</target>
|
<target state="translated">Error descarregant document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Encaix Pàgina</target>
|
<target state="translated">Encaix Pàgina</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error en executar l'edició del PDF</target>
|
<target state="translated">Error en executar l'edició del PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Entra la contrasenya actual abans d'intentar treure-la.</target>
|
<target state="translated">Entra la contrasenya actual abans d'intentar treure-la.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error executant l'operació de treure contrasenya</target>
|
<target state="translated">Error executant l'operació de treure contrasenya</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Impressió fallida.</target>
|
<target state="translated">Impressió fallida.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error carregant document per imprimir.</target>
|
<target state="translated">Error carregant document per imprimir.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al carregar tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Error al carregar tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Completat correctament la migració de la configuració de la base de dades!</target>
|
<target state="translated">Completat correctament la migració de la configuració de la base de dades!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">No es pot migrar la configuració de la base de dades, prova manualment.</target>
|
<target state="translated">No es pot migrar la configuració de la base de dades, prova manualment.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pots reiniciar el tour des de les opcions.</target>
|
<target state="translated">Pots reiniciar el tour des de les opcions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ryd</target>
|
<target state="translated">Ryd</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Indtast adgangskode</target>
|
<target state="translated">Indtast adgangskode</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF-Editor</target>
|
<target state="translated">PDF-Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Standardberechtigungen</target>
|
<target state="translated">Standardberechtigungen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Einstellungen gelten für dieses Benutzerkonto für Objekte (Tags, E-Mail-Regeln, etc. - jedoch nicht für Dokumente), die über die Weboberfläche erstellt wurden. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Zurücksetzen</target>
|
<target state="translated">Zurücksetzen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kennwortschutz entfernen</target>
|
<target state="translated">Kennwortschutz entfernen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ungeschützte Kopie erstellen oder bestehende Datei ersetzen.</target>
|
<target state="translated">Ungeschützte Kopie erstellen oder bestehende Datei ersetzen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Starten</target>
|
<target state="translated">Starten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Laden der Vorschau</target>
|
<target state="translated">Fehler beim Laden der Vorschau</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vorschau öffnen</target>
|
<target state="translated">Vorschau öffnen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nach Eigentümer filtern</target>
|
<target state="translated">Nach Eigentümer filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kennwort eingeben</target>
|
<target state="translated">Kennwort eingeben</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Abrufen der Metadaten</target>
|
<target state="translated">Fehler beim Abrufen der Metadaten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Laden des Inhalts: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Fehler beim Laden des Inhalts: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument aktualisiert</target>
|
<target state="translated">Dokument aktualisiert</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument aktualisiert am <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokument aktualisiert am <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.</target>
|
<target state="translated">Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Neu laden</target>
|
<target state="translated">Neu laden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument mit den neuesten Änderungen neu geladen.</target>
|
<target state="translated">Dokument mit den neuesten Änderungen neu geladen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument neu geladen.</target>
|
<target state="translated">Dokument neu geladen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nächstes Dokument</target>
|
<target state="translated">Nächstes Dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vorheriges Dokument</target>
|
<target state="translated">Vorheriges Dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument speichern</target>
|
<target state="translated">Dokument speichern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Speichern und schliessen / weiter</target>
|
<target state="translated">Speichern und schliessen / weiter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Abrufen des Versionsinhalts</target>
|
<target state="translated">Fehler beim Abrufen des Versionsinhalts</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Abrufen der Vorschläge.</target>
|
<target state="translated">Fehler beim Abrufen der Vorschläge.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument „<x id="PH" equiv-text="newValues.title"/>“ erfolgreich gespeichert.</target>
|
<target state="translated">Dokument „<x id="PH" equiv-text="newValues.title"/>“ erfolgreich gespeichert.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Speichern des Dokuments</target>
|
<target state="translated">Fehler beim Speichern des Dokuments</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Löschen des Dokuments</target>
|
<target state="translated">Fehler beim Löschen des Dokuments</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen.</target>
|
<target state="translated">Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Die Archivdatei wird mit den aktuellen Einstellungen neu generiert.</target>
|
<target state="translated">Die Archivdatei wird mit den aktuellen Einstellungen neu generiert.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Ausführen der Aktion</target>
|
<target state="translated">Fehler beim Ausführen der Aktion</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Herunterladen des Dokuments</target>
|
<target state="translated">Fehler beim Herunterladen des Dokuments</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Seite einpassen</target>
|
<target state="translated">Seite einpassen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Ausführen der PDF-Bearbeitung</target>
|
<target state="translated">Fehler beim Ausführen der PDF-Bearbeitung</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Bitte geben Sie das aktuelle Kennwort ein, bevor Sie versuchen, es zu entfernen.</target>
|
<target state="translated">Bitte geben Sie das aktuelle Kennwort ein, bevor Sie versuchen, es zu entfernen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Entfernen des Kennworts</target>
|
<target state="translated">Fehler beim Entfernen des Kennworts</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Drucken fehlgeschlagen.</target>
|
<target state="translated">Drucken fehlgeschlagen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Laden des Dokuments für den Druck.</target>
|
<target state="translated">Fehler beim Laden des Dokuments für den Druck.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Laden des TIFF: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Fehler beim Laden des TIFF: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Einmalige Migration der Einstellungen in die Datenbank erfolgreich abgeschlossen!</target>
|
<target state="translated">Einmalige Migration der Einstellungen in die Datenbank erfolgreich abgeschlossen!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Einstellungen konnten nicht in die Datenbank migriert werden. Bitte versuchen Sie, manuell zu speichern.</target>
|
<target state="translated">Einstellungen konnten nicht in die Datenbank migriert werden. Bitte versuchen Sie, manuell zu speichern.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sie können die Tour in den Einstellungen erneut starten.</target>
|
<target state="translated">Sie können die Tour in den Einstellungen erneut starten.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">PDF-Editor</target>
|
<target state="final">PDF-Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Standardberechtigungen</target>
|
<target state="final">Standardberechtigungen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html" approved="yes">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final"> Einstellungen gelten für dieses Benutzerkonto für Objekte (Tags, E-Mail-Regeln, etc. - jedoch nicht für Dokumente), die über die Weboberfläche erstellt wurden. </target>
|
<target state="translated"> Die Einstellungen gelten für dieses Benutzerkonto in Bezug auf Objekte (Tags, E-Mail-Regeln usw.), die über die Weboberfläche erstellt wurden. Diese Einstellungen gelten nicht für Dokumente. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html" approved="yes">
|
<trans-unit id="4292903881380648974" datatype="html" approved="yes">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -2520,7 +2520,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">77</context>
|
<context context-type="linenumber">77</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">LLM-Index</target>
|
<target state="translated">LLM-Indizierung</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6402092370576716734" datatype="html" approved="yes">
|
<trans-unit id="6402092370576716734" datatype="html" approved="yes">
|
||||||
<source>Empty Trash</source>
|
<source>Empty Trash</source>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Zurücksetzen</target>
|
<target state="final">Zurücksetzen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html" approved="yes">
|
<trans-unit id="7515883357904500238" datatype="html" approved="yes">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Kennwortschutz entfernen</target>
|
<target state="final">Kennwortschutz entfernen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ungeschützte Kopie erstellen oder bestehende Datei ersetzen.</target>
|
<target state="translated">Ungeschützte Kopie erstellen oder bestehende Datei ersetzen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Starten</target>
|
<target state="translated">Starten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Laden der Vorschau</target>
|
<target state="final">Fehler beim Laden der Vorschau</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Vorschau öffnen</target>
|
<target state="final">Vorschau öffnen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Nach Eigentümer filtern</target>
|
<target state="final">Nach Eigentümer filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Kennwort eingeben</target>
|
<target state="final">Kennwort eingeben</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Abrufen der Metadaten</target>
|
<target state="final">Fehler beim Abrufen der Metadaten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Laden des Inhalts: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="final">Fehler beim Laden des Inhalts: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Dokument aktualisiert</target>
|
<target state="final">Dokument aktualisiert</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument aktualisiert am <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokument aktualisiert am <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.</target>
|
<target state="final">Neu laden, um lokale ungespeicherte Änderungen zu verwerfen und aktuellste gespeicherte Version zu laden.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Neu laden</target>
|
<target state="final">Neu laden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument mit den neuesten Änderungen neu geladen.</target>
|
<target state="translated">Dokument mit den neuesten Änderungen neu geladen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Dokument neu geladen.</target>
|
<target state="final">Dokument neu geladen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Nächstes Dokument</target>
|
<target state="final">Nächstes Dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Vorheriges Dokument</target>
|
<target state="final">Vorheriges Dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Dokument speichern</target>
|
<target state="final">Dokument speichern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Speichern und schließen / weiter</target>
|
<target state="final">Speichern und schließen / weiter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Abrufen des Versionsinhalts</target>
|
<target state="final">Fehler beim Abrufen des Versionsinhalts</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Abrufen der Vorschläge.</target>
|
<target state="final">Fehler beim Abrufen der Vorschläge.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Dokument „<x id="PH" equiv-text="newValues.title"/>“ erfolgreich gespeichert.</target>
|
<target state="final">Dokument „<x id="PH" equiv-text="newValues.title"/>“ erfolgreich gespeichert.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fehler beim Speichern des Dokuments „<x id="PH" equiv-text="this.document().title"/>“</target>
|
<target state="translated">Fehler beim Speichern des Dokuments „<x id="PH" equiv-text="this.document().title"/>“</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Speichern des Dokuments</target>
|
<target state="final">Fehler beim Speichern des Dokuments</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Möchten Sie das Dokument „<x id="PH" equiv-text="this.document().title"/>“ wirklich in den Papierkorb verschieben?</target>
|
<target state="translated">Möchten Sie das Dokument „<x id="PH" equiv-text="this.document().title"/>“ wirklich in den Papierkorb verschieben?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Löschen des Dokuments</target>
|
<target state="final">Fehler beim Löschen des Dokuments</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen.</target>
|
<target state="final">Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Die Archivdatei wird mit den aktuellen Einstellungen neu generiert.</target>
|
<target state="final">Die Archivdatei wird mit den aktuellen Einstellungen neu generiert.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erneute Verarbeitung für „<x id="PH" equiv-text="this.document().title"/>“ wird im Hintergrund gestartet.</target>
|
<target state="translated">Erneute Verarbeitung für „<x id="PH" equiv-text="this.document().title"/>“ wird im Hintergrund gestartet.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Ausführen der Aktion</target>
|
<target state="final">Fehler beim Ausführen der Aktion</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Herunterladen des Dokuments</target>
|
<target state="final">Fehler beim Herunterladen des Dokuments</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Seite einpassen</target>
|
<target state="final">Seite einpassen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Der Teilungsvorgang für „<x id="PH" equiv-text="this.document().title"/>“ wird im Hintergrund gestartet.</target>
|
<target state="translated">Der Teilungsvorgang für „<x id="PH" equiv-text="this.document().title"/>“ wird im Hintergrund gestartet.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Ausführen der PDF-Bearbeitung</target>
|
<target state="final">Fehler beim Ausführen der PDF-Bearbeitung</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Bitte geben Sie das aktuelle Kennwort ein, bevor Sie versuchen, es zu entfernen.</target>
|
<target state="final">Bitte geben Sie das aktuelle Kennwort ein, bevor Sie versuchen, es zu entfernen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kennwortentfernung für „<x id="PH" equiv-text="this.document().title"/>" wird im Hintergrund gestartet.</target>
|
<target state="translated">Kennwortentfernung für „<x id="PH" equiv-text="this.document().title"/>" wird im Hintergrund gestartet.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Entfernen des Kennworts</target>
|
<target state="final">Fehler beim Entfernen des Kennworts</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Drucken fehlgeschlagen.</target>
|
<target state="final">Drucken fehlgeschlagen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Laden des Dokuments für den Druck.</target>
|
<target state="final">Fehler beim Laden des Dokuments für den Druck.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Fehler beim Laden des TIFF: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="final">Fehler beim Laden des TIFF: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9715,7 +9719,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">8</context>
|
<context context-type="linenumber">8</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> thumbnail</target>
|
<target state="translated"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> Vorschau</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2784168796433474565" datatype="html" approved="yes">
|
<trans-unit id="2784168796433474565" datatype="html" approved="yes">
|
||||||
<source>Filter by tag</source>
|
<source>Filter by tag</source>
|
||||||
@@ -12078,13 +12082,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">KI aktiviert</target>
|
<target state="final">KI aktiviert</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8028880048909383956" datatype="html">
|
<trans-unit id="8028880048909383956" datatype="html" approved="yes">
|
||||||
<source>Consider privacy implications when enabling AI features, especially if using a remote model.</source>
|
<source>Consider privacy implications when enabling AI features, especially if using a remote model.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||||
<context context-type="linenumber">288</context>
|
<context context-type="linenumber">288</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Berücksichtigen Sie die Auswirkungen auf die Privatsphäre der Benutzer, wenn Sie KI-Funktionen aktivieren, insbesondere wenn Sie ein nicht lokales Modell verwenden.</target>
|
<target state="final">Berücksichtigen Sie die Auswirkungen auf die Privatsphäre der Benutzer, wenn Sie KI-Funktionen aktivieren, insbesondere wenn Sie kein lokales Modell verwenden.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8131374115579345652" datatype="html">
|
<trans-unit id="8131374115579345652" datatype="html">
|
||||||
<source>LLM Embedding Backend</source>
|
<source>LLM Embedding Backend</source>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Einmalige Migration der Einstellungen in die Datenbank erfolgreich abgeschlossen!</target>
|
<target state="final">Einmalige Migration der Einstellungen in die Datenbank erfolgreich abgeschlossen!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Einstellungen konnten nicht in die Datenbank migriert werden. Bitte versuchen Sie, manuell zu speichern.</target>
|
<target state="final">Einstellungen konnten nicht in die Datenbank migriert werden. Bitte versuchen Sie, manuell zu speichern.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Sie können die Tour in den Einstellungen erneut starten.</target>
|
<target state="final">Sie können die Tour in den Einstellungen erneut starten.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Προεπιλεγμένα δικαιώματα</target>
|
<target state="translated">Προεπιλεγμένα δικαιώματα</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Καθαρισμός</target>
|
<target state="translated">Καθαρισμός</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Ναι</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Ναι</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Εισαγωγή Κωδικού Πρόσβασης</target>
|
<target state="translated">Εισαγωγή Κωδικού Πρόσβασης</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Σφάλμα ανάκτησης μεταδεδομένων</target>
|
<target state="translated">Σφάλμα ανάκτησης μεταδεδομένων</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Σφάλμα στην ανάκτηση προτάσεων.</target>
|
<target state="translated">Σφάλμα στην ανάκτηση προτάσεων.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Σφάλμα αποθήκευσης του εγγράφου</target>
|
<target state="translated">Σφάλμα αποθήκευσης του εγγράφου</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Σφάλμα διαγραφής εγγράφου</target>
|
<target state="translated">Σφάλμα διαγραφής εγγράφου</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Σφάλμα εκτέλεσης λειτουργίας</target>
|
<target state="translated">Σφάλμα εκτέλεσης λειτουργίας</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ολοκληρώθηκε με επιτυχία η μετεγκατάσταση των ρυθμίσεων στη βάση δεδομένων!</target>
|
<target state="translated">Ολοκληρώθηκε με επιτυχία η μετεγκατάσταση των ρυθμίσεων στη βάση δεδομένων!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Δεν είναι δυνατή η μετεγκατάσταση των ρυθμίσεων στη βάση δεδομένων, παρακαλώ δοκιμάστε χειροκίνητα.</target>
|
<target state="translated">Δεν είναι δυνατή η μετεγκατάσταση των ρυθμίσεων στη βάση δεδομένων, παρακαλώ δοκιμάστε χειροκίνητα.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Μπορείτε να επανεκκινήσετε την περιήγηση από τη σελίδα ρυθμίσεων.</target>
|
<target state="translated">Μπορείτε να επανεκκινήσετε την περιήγηση από τη σελίδα ρυθμίσεων.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Editor de PDF</target>
|
<target state="translated">Editor de PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Permisos por defecto</target>
|
<target state="translated">Permisos por defecto</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> La configuración aplica a esta cuenta de usuario para objetos (Etiquetas, Reglas de correo, etc. pero no documentos) creados a través de la interfaz web. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Limpiar</target>
|
<target state="final">Limpiar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Si</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eliminar protección por contraseña</target>
|
<target state="translated">Eliminar protección por contraseña</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Crear una copia sin protección o reemplazar el archivo existente.</target>
|
<target state="translated">Crear una copia sin protección o reemplazar el archivo existente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Inicio</target>
|
<target state="translated">Inicio</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al cargar vista previa</target>
|
<target state="translated">Error al cargar vista previa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Abrir vista previa</target>
|
<target state="translated">Abrir vista previa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrar por propietario</target>
|
<target state="translated">Filtrar por propietario</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Si</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Introducir contraseña</target>
|
<target state="translated">Introducir contraseña</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al recuperar los metadatos</target>
|
<target state="translated">Error al recuperar los metadatos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Se ha producido un error al cargar el contenido: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Se ha producido un error al cargar el contenido: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento siguiente</target>
|
<target state="translated">Documento siguiente</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento anterior</target>
|
<target state="translated">Documento anterior</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Guardar documento</target>
|
<target state="translated">Guardar documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Guardar y cerrar / siguiente</target>
|
<target state="translated">Guardar y cerrar / siguiente</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al recuperar las sugerencias.</target>
|
<target state="translated">Error al recuperar las sugerencias.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento "<x id="PH" equiv-text="newValues.title"/>" guardado correctamente.</target>
|
<target state="translated">Documento "<x id="PH" equiv-text="newValues.title"/>" guardado correctamente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al guardar el documento</target>
|
<target state="translated">Error al guardar el documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al eliminar documento</target>
|
<target state="translated">Error al eliminar documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Esta operación recreará permanentemente el archivo de archivo para este documento.</target>
|
<target state="translated">Esta operación recreará permanentemente el archivo de archivo para este documento.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">El archivo se regenerará con la configuración actual.</target>
|
<target state="translated">El archivo se regenerará con la configuración actual.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al ejecutar la operación</target>
|
<target state="translated">Error al ejecutar la operación</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al descargar el documento</target>
|
<target state="translated">Error al descargar el documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ajuste de página</target>
|
<target state="translated">Ajuste de página</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error al ejecutar la operación de edición PDF</target>
|
<target state="translated">Error al ejecutar la operación de edición PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Se ha producido un error al cargar el tif: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Se ha producido un error al cargar el tif: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">¡Se completó con éxito la migración única de la configuración a la base de datos!</target>
|
<target state="translated">¡Se completó con éxito la migración única de la configuración a la base de datos!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">No se puede migrar la configuración a la base de datos, por favor intente guardarla manualmente.</target>
|
<target state="translated">No se puede migrar la configuración a la base de datos, por favor intente guardarla manualmente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Puede reiniciar la visita desde la página de configuración.</target>
|
<target state="translated">Puede reiniciar la visita desde la página de configuración.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Clear</target>
|
<target state="needs-translation">Clear</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Enter Password</target>
|
<target state="needs-translation">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">مجوزهای پیش فرض</target>
|
<target state="translated">مجوزهای پیش فرض</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">تنظیمات برای این حساب کاربری برای اشیاء (برچسب ها ، قوانین نامه و غیره اما نه اسناد) ایجاد شده از طریق UI وب اعمال می شود.</target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">پاک کردن</target>
|
<target state="translated">پاک کردن</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">بله</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">پیش نمایش در حال بارگیری خطا</target>
|
<target state="translated">پیش نمایش در حال بارگیری خطا</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">پیش نمایش باز</target>
|
<target state="translated">پیش نمایش باز</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">فیلتر توسط مالک</target>
|
<target state="translated">فیلتر توسط مالک</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">بله</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">رمز ورود را وارد کنید</target>
|
<target state="translated">رمز ورود را وارد کنید</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطا در بازیابی ابرداده</target>
|
<target state="translated">خطا در بازیابی ابرداده</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">سند بعدی</target>
|
<target state="translated">سند بعدی</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">سند قبلی</target>
|
<target state="translated">سند قبلی</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">سند را ذخیره کنید</target>
|
<target state="translated">سند را ذخیره کنید</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ذخیره و بسته / بعدی</target>
|
<target state="translated">ذخیره و بسته / بعدی</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطای بازیابی پیشنهادات.</target>
|
<target state="translated">خطای بازیابی پیشنهادات.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">سند ذخیره خطا</target>
|
<target state="translated">سند ذخیره خطا</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">خطای حذف سند</target>
|
<target state="translated">خطای حذف سند</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">این عملیات دائمی پرونده بایگانی را برای این سند بازآفرینی می کند.</target>
|
<target state="translated">این عملیات دائمی پرونده بایگانی را برای این سند بازآفرینی می کند.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">پرونده بایگانی با تنظیمات فعلی دوباره تولید می شود.</target>
|
<target state="translated">پرونده بایگانی با تنظیمات فعلی دوباره تولید می شود.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">عملیات اجرای خطا</target>
|
<target state="translated">عملیات اجرای خطا</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">سند بارگیری خطا</target>
|
<target state="translated">سند بارگیری خطا</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">صفحه مناسب</target>
|
<target state="translated">صفحه مناسب</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">با موفقیت مهاجرت یک بار تنظیمات به پایگاه داده را تکمیل کرد!</target>
|
<target state="translated">با موفقیت مهاجرت یک بار تنظیمات به پایگاه داده را تکمیل کرد!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">برای انتقال تنظیمات به پایگاه داده امکان پذیر نیست ، لطفاً به صورت دستی ذخیره کنید.</target>
|
<target state="translated">برای انتقال تنظیمات به پایگاه داده امکان پذیر نیست ، لطفاً به صورت دستی ذخیره کنید.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">می توانید تور را از صفحه تنظیمات مجدداً راه اندازی کنید.</target>
|
<target state="translated">می توانید تور را از صفحه تنظیمات مجدداً راه اندازی کنید.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Oletusoikeudet</target>
|
<target state="translated">Oletusoikeudet</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tyhjennä</target>
|
<target state="translated">Tyhjennä</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Kyllä</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Virhe esikatselua ladattaessa</target>
|
<target state="translated">Virhe esikatselua ladattaessa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Avaa esikatselu</target>
|
<target state="translated">Avaa esikatselu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Kyllä</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Syötä salasana</target>
|
<target state="translated">Syötä salasana</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Virhe haettaessa metatietoja</target>
|
<target state="translated">Virhe haettaessa metatietoja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sisällön lataamisessa tapahtui virhe: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Sisällön lataamisessa tapahtui virhe: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Seuraava asiakirja</target>
|
<target state="translated">Seuraava asiakirja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Edellinen asiakirja</target>
|
<target state="translated">Edellinen asiakirja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tallenna asiakirja</target>
|
<target state="translated">Tallenna asiakirja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tallenna ja sulje / seuraava</target>
|
<target state="translated">Tallenna ja sulje / seuraava</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Virhe ehdotuksia noutaessa.</target>
|
<target state="translated">Virhe ehdotuksia noutaessa.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Asiakirja "<x id="PH" equiv-text="newValues.title"/>" tallennettu onnistuneesti.</target>
|
<target state="translated">Asiakirja "<x id="PH" equiv-text="newValues.title"/>" tallennettu onnistuneesti.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Virhe tallennettaessa asiakirjaa</target>
|
<target state="translated">Virhe tallennettaessa asiakirjaa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Virhe asiakirjaa poistaessa</target>
|
<target state="translated">Virhe asiakirjaa poistaessa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Virhe toimintoa suoritettaessa</target>
|
<target state="translated">Virhe toimintoa suoritettaessa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sivun sovitus</target>
|
<target state="translated">Sivun sovitus</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tulostus epäonnistui.</target>
|
<target state="translated">Tulostus epäonnistui.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kertaluontoinen asetusten migratointi tietokantaan suoritettu onnistuneesti!</target>
|
<target state="translated">Kertaluontoinen asetusten migratointi tietokantaan suoritettu onnistuneesti!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Asetuksia ei saatu migratoitua tietokantaan. Yritä tallennusta manuaalisesti.</target>
|
<target state="translated">Asetuksia ei saatu migratoitua tietokantaan. Yritä tallennusta manuaalisesti.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Voit käynnistää opastuksen uudelleen asetussivulta.</target>
|
<target state="translated">Voit käynnistää opastuksen uudelleen asetussivulta.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -432,7 +432,7 @@
|
|||||||
<context context-type="sourcefile">src/app/app.component.ts</context>
|
<context context-type="sourcefile">src/app/app.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">171</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Le tableau de bord peut être utilisé pour afficher les vues enregistrées, comme une boîte de réception. Les vues se trouvent dans Paramètres > Vues enregistrées une fois que vous en avez créées.</target>
|
<target state="translated">Le tableau de bord peut être utilisé pour afficher les vues enregistrées, comme une boîte de réception. Les vues se trouvent dans Paramètres > Vues enregistrées une fois que vous en avez créé.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="9075755296812854717" datatype="html" approved="yes">
|
<trans-unit id="9075755296812854717" datatype="html" approved="yes">
|
||||||
<source>Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.</source>
|
<source>Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.</source>
|
||||||
@@ -1264,7 +1264,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">185</context>
|
<context context-type="linenumber">185</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Afficher le nombre de documents dans la barre latérale vues enregistrées</target>
|
<target state="translated">Afficher le nombre de documents dans les vues enregistrées dans la barre latérale</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8939587804990976924" datatype="html" approved="yes">
|
<trans-unit id="8939587804990976924" datatype="html" approved="yes">
|
||||||
<source>Items per page</source>
|
<source>Items per page</source>
|
||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Éditeur PDF</target>
|
<target state="translated">Éditeur PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Droits d'accès par défaut</target>
|
<target state="final">Droits d'accès par défaut</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Les paramètres s’appliquent à ce compte utilisateur pour les objets (étiquettes, règles de courriel, etc. à l’exception des documents) créés via l’interface web. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html" approved="yes">
|
<trans-unit id="4292903881380648974" datatype="html" approved="yes">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -2484,7 +2484,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">66</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Consume File</target>
|
<target state="translated">Fichier à consommer</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5622386857946132209" datatype="html">
|
<trans-unit id="5622386857946132209" datatype="html">
|
||||||
<source>Train Classifier</source>
|
<source>Train Classifier</source>
|
||||||
@@ -2492,7 +2492,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">70</context>
|
<context context-type="linenumber">70</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Train Classifier</target>
|
<target state="translated">Entrainer le classificateur</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="776309955507105337" datatype="html">
|
<trans-unit id="776309955507105337" datatype="html">
|
||||||
<source>Sanity Check</source>
|
<source>Sanity Check</source>
|
||||||
@@ -2520,7 +2520,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">77</context>
|
<context context-type="linenumber">77</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">LLM Index</target>
|
<target state="translated">Index LLM</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6402092370576716734" datatype="html">
|
<trans-unit id="6402092370576716734" datatype="html">
|
||||||
<source>Empty Trash</source>
|
<source>Empty Trash</source>
|
||||||
@@ -2528,7 +2528,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">80</context>
|
<context context-type="linenumber">80</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vider la poubelle</target>
|
<target state="translated">Vider la corbeille</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4173754487295857311" datatype="html">
|
<trans-unit id="4173754487295857311" datatype="html">
|
||||||
<source>Check Workflows</source>
|
<source>Check Workflows</source>
|
||||||
@@ -2536,7 +2536,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">84</context>
|
<context context-type="linenumber">84</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Check Workflows</target>
|
<target state="translated">Processus de contrôle</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2065831805515896240" datatype="html">
|
<trans-unit id="2065831805515896240" datatype="html">
|
||||||
<source>Bulk Update</source>
|
<source>Bulk Update</source>
|
||||||
@@ -2560,7 +2560,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">96</context>
|
<context context-type="linenumber">96</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Build Share Link</target>
|
<target state="translated">Créer un lien de partage</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6581973658756561124" datatype="html">
|
<trans-unit id="6581973658756561124" datatype="html">
|
||||||
<source>Bulk Delete</source>
|
<source>Bulk Delete</source>
|
||||||
@@ -2696,7 +2696,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">348</context>
|
<context context-type="linenumber">348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Confirm Dismiss All</target>
|
<target state="translated">Confirmer « Tout ignorer »</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4157200209636243740" datatype="html">
|
<trans-unit id="4157200209636243740" datatype="html">
|
||||||
<source>Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</source>
|
<source>Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</source>
|
||||||
@@ -2704,7 +2704,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">349</context>
|
<context context-type="linenumber">349</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</target>
|
<target state="translated">Ignorer toutes (<x id="PH" equiv-text="this.totalTasks()"/>) les tâches ?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8149502458056418229" datatype="html">
|
<trans-unit id="8149502458056418229" datatype="html">
|
||||||
<source>Success. New document id <x id="PH" equiv-text="documentId"/> created</source>
|
<source>Success. New document id <x id="PH" equiv-text="documentId"/> created</source>
|
||||||
@@ -2724,7 +2724,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">452</context>
|
<context context-type="linenumber">452</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Duplicate of document #<x id="PH" equiv-text="duplicateOf"/></target>
|
<target state="translated">Doublon du document #<x id="PH" equiv-text="duplicateOf"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3418677553313974490" datatype="html" approved="yes">
|
<trans-unit id="3418677553313974490" datatype="html" approved="yes">
|
||||||
<source>Trash</source>
|
<source>Trash</source>
|
||||||
@@ -2772,7 +2772,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
||||||
<context context-type="linenumber">89</context>
|
<context context-type="linenumber">89</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Effacer le(s) sélectionné(s)</target>
|
<target state="translated">Supprimer la sélection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8597030111956627342" datatype="html" approved="yes">
|
<trans-unit id="8597030111956627342" datatype="html" approved="yes">
|
||||||
<source>Empty trash</source>
|
<source>Empty trash</source>
|
||||||
@@ -2984,7 +2984,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
||||||
<context context-type="linenumber">78</context>
|
<context context-type="linenumber">78</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Cette opération effacera définitivement ce document.</target>
|
<target state="translated">Cette opération supprimera définitivement ce document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5641451190833696892" datatype="html" approved="yes">
|
<trans-unit id="5641451190833696892" datatype="html" approved="yes">
|
||||||
<source>This operation cannot be undone.</source>
|
<source>This operation cannot be undone.</source>
|
||||||
@@ -3048,7 +3048,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
||||||
<context context-type="linenumber">111</context>
|
<context context-type="linenumber">111</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Cette action effacera définitivement les documents sélectionnés.</target>
|
<target state="translated">Cette action supprimera définitivement les documents sélectionnés.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6804051092296228130" datatype="html">
|
<trans-unit id="6804051092296228130" datatype="html">
|
||||||
<source>This operation will permanently delete all documents in the trash.</source>
|
<source>This operation will permanently delete all documents in the trash.</source>
|
||||||
@@ -3056,7 +3056,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
||||||
<context context-type="linenumber">112</context>
|
<context context-type="linenumber">112</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Cette opération effacera définitivement tous les documents de la corbeille.</target>
|
<target state="translated">Cette opération supprimera définitivement tous les documents de la corbeille.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6996183233986182894" datatype="html">
|
<trans-unit id="6996183233986182894" datatype="html">
|
||||||
<source>Document(s) deleted</source>
|
<source>Document(s) deleted</source>
|
||||||
@@ -3064,7 +3064,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/trash/trash.component.ts</context>
|
||||||
<context context-type="linenumber">123</context>
|
<context context-type="linenumber">123</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document(s) effacé(s)</target>
|
<target state="translated">Document(s) supprimé(s)</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6962724852893361467" datatype="html">
|
<trans-unit id="6962724852893361467" datatype="html">
|
||||||
<source>Error deleting document(s)</source>
|
<source>Error deleting document(s)</source>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Réinitialiser</target>
|
<target state="final">Réinitialiser</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Oui</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html" approved="yes">
|
<trans-unit id="7515883357904500238" datatype="html" approved="yes">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Retirer la protection par mot de passe</target>
|
<target state="translated">Retirer la protection par mot de passe</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Créer une copie non protégée ou remplacer le fichier existant.</target>
|
<target state="translated">Créer une copie non protégée ou remplacer le fichier existant.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Démarrer</target>
|
<target state="translated">Démarrer</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -5764,7 +5780,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">158</context>
|
<context context-type="linenumber">158</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Déclenche pour les documents qui correspondent à <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>tous<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/>les filtres spécifiés ci-dessous.</target>
|
<target state="translated">Déclenche pour les documents qui correspondent à <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>tous<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> les filtres spécifiés ci-dessous.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7467799586957602479" datatype="html">
|
<trans-unit id="7467799586957602479" datatype="html">
|
||||||
<source>Filter filename</source>
|
<source>Filter filename</source>
|
||||||
@@ -6084,7 +6100,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">418</context>
|
<context context-type="linenumber">418</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">URL du Webhook</target>
|
<target state="translated">URL du webhook</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7491983459027245019" datatype="html">
|
<trans-unit id="7491983459027245019" datatype="html">
|
||||||
<source>Use parameters for webhook body</source>
|
<source>Use parameters for webhook body</source>
|
||||||
@@ -6116,7 +6132,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">426</context>
|
<context context-type="linenumber">426</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Corps du Webhook</target>
|
<target state="translated">Corps du webhook</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3829826512656746316" datatype="html">
|
<trans-unit id="3829826512656746316" datatype="html">
|
||||||
<source>Webhook headers</source>
|
<source>Webhook headers</source>
|
||||||
@@ -6124,7 +6140,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">428</context>
|
<context context-type="linenumber">428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">En-têtes Webhook</target>
|
<target state="translated">En-têtes du webhook</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2114525789021600887" datatype="html">
|
<trans-unit id="2114525789021600887" datatype="html">
|
||||||
<source>Include document</source>
|
<source>Include document</source>
|
||||||
@@ -6140,7 +6156,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">436,438</context>
|
<context context-type="linenumber">436,438</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Un mot de passe par ligne. Le workflow va les essayer dans l'ordre jusqu'à ce que l'un d'entre eux réussisse. </target>
|
<target state="translated"> Un mot de passe par ligne. Le workflow les essaiera dans l'ordre jusqu'à ce qu'un réussisse. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3853121441237751087" datatype="html">
|
<trans-unit id="3853121441237751087" datatype="html">
|
||||||
<source>Passwords</source>
|
<source>Passwords</source>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erreur du chargement de l'aperçu</target>
|
<target state="translated">Erreur du chargement de l'aperçu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ouvrir l’aperçu</target>
|
<target state="translated">Ouvrir l’aperçu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7598,7 +7614,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/share-link-bundle-manage-dialog/share-link-bundle-manage-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/share-link-bundle-manage-dialog/share-link-bundle-manage-dialog.component.html</context>
|
||||||
<context context-type="linenumber">62</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">View error details</target>
|
<target state="translated">Afficher les détails de l'erreur</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2057574872309338088" datatype="html">
|
<trans-unit id="2057574872309338088" datatype="html">
|
||||||
<source>Copy share link</source>
|
<source>Copy share link</source>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrer par propriétaire</target>
|
<target state="translated">Filtrer par propriétaire</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Oui</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8656,7 +8660,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">318</context>
|
<context context-type="linenumber">318</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Original SHA256 checksum</target>
|
<target state="translated">Somme de contrôle SHA256 de l'original</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5888243105821763422" datatype="html" approved="yes">
|
<trans-unit id="5888243105821763422" datatype="html" approved="yes">
|
||||||
<source>Original file size</source>
|
<source>Original file size</source>
|
||||||
@@ -8680,7 +8684,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">331</context>
|
<context context-type="linenumber">331</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Archive SHA256 checksum</target>
|
<target state="translated">Somme de contrôle SHA256 de l'archive</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6033581412811562084" datatype="html" approved="yes">
|
<trans-unit id="6033581412811562084" datatype="html" approved="yes">
|
||||||
<source>Archive file size</source>
|
<source>Archive file size</source>
|
||||||
@@ -8736,7 +8740,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">407</context>
|
<context context-type="linenumber">407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documents en double détectés:</target>
|
<target state="translated">Documents en double détectés :</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="14058600336670816" datatype="html">
|
<trans-unit id="14058600336670816" datatype="html">
|
||||||
<source>In trash</source>
|
<source>In trash</source>
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Saisir le mot de passe</target>
|
<target state="translated">Saisir le mot de passe</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Erreur lors de la récupération des métadonnées</target>
|
<target state="final">Erreur lors de la récupération des métadonnées</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</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>
|
<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>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document a été mis à jour</target>
|
<target state="translated">Document a été mis à jour</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document a été mis à jour à <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Document a été mis à jour à <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Recharger pour refuser vos changements locaux non sauvegardés et charger la dernière version en ligne.</target>
|
<target state="translated">Recharger pour refuser vos changements locaux non sauvegardés et charger la dernière version en ligne.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Recharger</target>
|
<target state="translated">Recharger</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documents rechargés avec les derniers changements.</target>
|
<target state="translated">Documents rechargés avec les derniers changements.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document rechargé.</target>
|
<target state="translated">Document rechargé.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document suivant</target>
|
<target state="translated">Document suivant</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document précédent</target>
|
<target state="translated">Document précédent</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Enregistrer le document</target>
|
<target state="translated">Enregistrer le document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sauvegarder et fermer / suivant</target>
|
<target state="translated">Sauvegarder et fermer / suivant</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erreur de récupération du contenu de la version</target>
|
<target state="translated">Erreur de récupération du contenu de la version</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Erreur lors de la récupération des suggestions.</target>
|
<target state="final">Erreur lors de la récupération des suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document « <x id="PH" equiv-text="newValues.title"/> » enregistré avec succès.</target>
|
<target state="translated">Document « <x id="PH" equiv-text="newValues.title"/> » enregistré avec succès.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,15 +8934,15 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="translated">Erreur lors de la sauvegarde du document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="448882439049417053" datatype="html" approved="yes">
|
<trans-unit id="448882439049417053" datatype="html" approved="yes">
|
||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Erreur lors de la sauvegarde du document</target>
|
<target state="final">Erreur lors de la sauvegarde du document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Erreur lors de la suppression du document</target>
|
<target state="final">Erreur lors de la suppression du document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Cette action recréera définitivement le fichier d'archive pour ce document.</target>
|
<target state="translated">Cette action recréera définitivement le fichier d'archive pour ce document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Le fichier d'archive va être régénéré avec les paramètres actuels.</target>
|
<target state="translated">Le fichier d'archive va être régénéré avec les paramètres actuels.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Erreur lors de l'exécution de l'opération</target>
|
<target state="final">Erreur lors de l'exécution de l'opération</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erreur lors du téléchargement du document</target>
|
<target state="translated">Erreur lors du téléchargement du document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ajustement de la page</target>
|
<target state="translated">Ajustement de la page</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erreur lors de l’exécution de l’opération de modification du PDF</target>
|
<target state="translated">Erreur lors de l’exécution de l’opération de modification du PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Veuillez saisir le mot de passe actuel avant d'essayer de le supprimer.</target>
|
<target state="translated">Veuillez saisir le mot de passe actuel avant d'essayer de le supprimer.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erreur lors de la suppression du mot de passe</target>
|
<target state="translated">Erreur lors de la suppression du mot de passe</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Impression échouée.</target>
|
<target state="translated">Impression échouée.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erreur lors du chargement du document pour impression.</target>
|
<target state="translated">Erreur lors du chargement du document pour impression.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Une erreur s’est produite lors du chargement du tiff : <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Une erreur s’est produite lors du chargement du tiff : <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9228,7 +9232,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
|
||||||
<context context-type="linenumber">224</context>
|
<context context-type="linenumber">224</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Missing task ID.</target>
|
<target state="translated">ID de tâche manquant.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="205445381296663832" datatype="html">
|
<trans-unit id="205445381296663832" datatype="html">
|
||||||
<source>Upload failed.</source>
|
<source>Upload failed.</source>
|
||||||
@@ -9248,7 +9252,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
|
||||||
<context context-type="linenumber">274</context>
|
<context context-type="linenumber">274</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error uploading new version</target>
|
<target state="translated">Erreur lors du téléversement de la nouvelle version</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6299008920007331381" datatype="html" approved="yes">
|
<trans-unit id="6299008920007331381" datatype="html" approved="yes">
|
||||||
<source>Edit:</source>
|
<source>Edit:</source>
|
||||||
@@ -10275,7 +10279,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.ts</context>
|
||||||
<context context-type="linenumber">212</context>
|
<context context-type="linenumber">212</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Custom fields (Deprecated)</target>
|
<target state="translated">Champs personnalisés (Obsolète)</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2649431021108393503" datatype="html" approved="yes">
|
<trans-unit id="2649431021108393503" datatype="html" approved="yes">
|
||||||
<source>More like</source>
|
<source>More like</source>
|
||||||
@@ -10411,7 +10415,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.ts</context>
|
||||||
<context context-type="linenumber">332</context>
|
<context context-type="linenumber">332</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Title & content: <x id="PH" equiv-text="rule.value"/></target>
|
<target state="translated">Titre & contenu : <x id="PH" equiv-text="rule.value"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1872523635812236432" datatype="html" approved="yes">
|
<trans-unit id="1872523635812236432" datatype="html" approved="yes">
|
||||||
<source>ASN: <x id="PH" equiv-text="rule.value"/></source>
|
<source>ASN: <x id="PH" equiv-text="rule.value"/></source>
|
||||||
@@ -10935,7 +10939,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/management-list/management-list.component.ts</context>
|
<context context-type="sourcefile">src/app/components/manage/document-attributes/management-list/management-list.component.ts</context>
|
||||||
<context context-type="linenumber">453</context>
|
<context context-type="linenumber">453</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Cette action effacera définitivement les <x id="PH" equiv-text="this.typeNamePlural"/> documents sélectionnés.</target>
|
<target state="translated">Cette action supprimera définitivement les <x id="PH" equiv-text="this.typeNamePlural"/> documents sélectionnés.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5897787932098828336" datatype="html">
|
<trans-unit id="5897787932098828336" datatype="html">
|
||||||
<source>Objects deleted successfully</source>
|
<source>Objects deleted successfully</source>
|
||||||
@@ -12180,7 +12184,7 @@
|
|||||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||||
<context context-type="linenumber">365</context>
|
<context context-type="linenumber">365</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">LLM Request Timeout</target>
|
<target state="translated">Délai d'attente des requêtes LLM</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="483994032066441287" datatype="html">
|
<trans-unit id="483994032066441287" datatype="html">
|
||||||
<source>Timeout in seconds for LLM requests.</source>
|
<source>Timeout in seconds for LLM requests.</source>
|
||||||
@@ -12188,7 +12192,7 @@
|
|||||||
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
|
||||||
<context context-type="linenumber">369</context>
|
<context context-type="linenumber">369</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Timeout in seconds for LLM requests.</target>
|
<target state="translated">Délai d'attente en secondes pour les requêtes LLM.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="9155387182259025015" datatype="html">
|
<trans-unit id="9155387182259025015" datatype="html">
|
||||||
<source>Processing</source>
|
<source>Processing</source>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">La migration des paramètres vers la base de données a été effectuée avec succès !</target>
|
<target state="final">La migration des paramètres vers la base de données a été effectuée avec succès !</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Impossible de migrer les paramètres vers la base de données, veuillez essayer d’enregistrer manuellement.</target>
|
<target state="final">Impossible de migrer les paramètres vers la base de données, veuillez essayer d’enregistrer manuellement.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Vous pouvez recommencer la visite depuis les paramètres.</target>
|
<target state="final">Vous pouvez recommencer la visite depuis les paramètres.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">עורך PDF</target>
|
<target state="translated">עורך PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">הרשאות ברירת מחדל</target>
|
<target state="translated">הרשאות ברירת מחדל</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> ההגדרות חלות על חשבון משתמש זה עבור אובייקטים (תגים, כללי דואר וכו'. אבל לא מסמכים) שנוצרו באמצעות ממשק המשתמש באינטרנט. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ניקוי</target>
|
<target state="translated">ניקוי</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">כן</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">הסר את הגנת הסיסמה</target>
|
<target state="translated">הסר את הגנת הסיסמה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">צור עותק ללא סיסמה או החלף את הקובץ הקיים.</target>
|
<target state="translated">צור עותק ללא סיסמה או החלף את הקובץ הקיים.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">התחל</target>
|
<target state="translated">התחל</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה בתצוגה מקדימה</target>
|
<target state="translated">שגיאה בתצוגה מקדימה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">פתח תצוגה מקדימה</target>
|
<target state="translated">פתח תצוגה מקדימה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">סינון לפי בעלים</target>
|
<target state="translated">סינון לפי בעלים</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">כן</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">הזן סיסמה</target>
|
<target state="translated">הזן סיסמה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה באחזור נתונים</target>
|
<target state="translated">שגיאה באחזור נתונים</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ארעה שגיאה בטעינת התוכן: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">ארעה שגיאה בטעינת התוכן: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">המסמך הבא</target>
|
<target state="translated">המסמך הבא</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">המסמך הקודם</target>
|
<target state="translated">המסמך הקודם</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שמירת מסמך</target>
|
<target state="translated">שמירת מסמך</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שמירה וסגירה / הבא</target>
|
<target state="translated">שמירה וסגירה / הבא</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה באחזור הצעות.</target>
|
<target state="translated">שגיאה באחזור הצעות.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">המסמך "<x id="PH" equiv-text="newValues.title"/>" נשמר בהצלחה.</target>
|
<target state="translated">המסמך "<x id="PH" equiv-text="newValues.title"/>" נשמר בהצלחה.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה בשמירת מסמך</target>
|
<target state="translated">שגיאה בשמירת מסמך</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה במחיקת מסמך</target>
|
<target state="translated">שגיאה במחיקת מסמך</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">פעולה זו תבצע יצירה מחדש של קובץ הארכיון למסמך זה</target>
|
<target state="translated">פעולה זו תבצע יצירה מחדש של קובץ הארכיון למסמך זה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">קובץ הארכיון יווצר מחדש עם ההגדרות הנוכחיות.</target>
|
<target state="translated">קובץ הארכיון יווצר מחדש עם ההגדרות הנוכחיות.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאת הרצה</target>
|
<target state="translated">שגיאת הרצה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה בעת הורדת מסמך</target>
|
<target state="translated">שגיאה בעת הורדת מסמך</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">התאם תצוגה לרוחב הדף</target>
|
<target state="translated">התאם תצוגה לרוחב הדף</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">אירעה שגיאה בעת ביצוע פעולת הסרת הסיסמה</target>
|
<target state="translated">אירעה שגיאה בעת ביצוע פעולת הסרת הסיסמה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">הדפסה נכשלה.</target>
|
<target state="translated">הדפסה נכשלה.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">אירעה שגיאה בעת טעינת המסמך להדפסה.</target>
|
<target state="translated">אירעה שגיאה בעת טעינת המסמך להדפסה.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">שגיאה בעת טעינת קובץ tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">שגיאה בעת טעינת קובץ tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">הושלמה בהצלחה העברה חד פעמית של הגדרות למסד הנתונים!</target>
|
<target state="translated">הושלמה בהצלחה העברה חד פעמית של הגדרות למסד הנתונים!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">לא ניתן לבצע העברה של הגדרות למסד הנתונים, נסה לשמור באופן ידני.</target>
|
<target state="translated">לא ניתן לבצע העברה של הגדרות למסד הנתונים, נסה לשמור באופן ידני.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Clear</target>
|
<target state="needs-translation">Clear</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Enter Password</target>
|
<target state="needs-translation">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF Uređivač</target>
|
<target state="translated">PDF Uređivač</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Zadane ovlasti</target>
|
<target state="translated">Zadane ovlasti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Postavke se primjenjuju na ovaj korisnički račun za objekte (oznake, pravila pošte, itd. ali ne i dokumente) stvorene putem web sučelja.</target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Očisti</target>
|
<target state="translated">Očisti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Da</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ukloni zaštitu lozinkom</target>
|
<target state="translated">Ukloni zaštitu lozinkom</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Create an unprotected copy or replace the existing file.</target>
|
<target state="translated">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Start</target>
|
<target state="translated">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pogreška pri učitavanju pregleda</target>
|
<target state="translated">Pogreška pri učitavanju pregleda</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Otvori pregled</target>
|
<target state="translated">Otvori pregled</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtriraj po vlasniku</target>
|
<target state="translated">Filtriraj po vlasniku</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Da</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Unesi lozinku</target>
|
<target state="translated">Unesi lozinku</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri dohvaćanju metapodataka</target>
|
<target state="translated">Greška pri dohvaćanju metapodataka</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</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>
|
<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>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je ažuriran</target>
|
<target state="translated">Dokument je ažuriran</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je ažuriran u <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokument je ažuriran u <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Učitajte ponovo da odbacite lokalne nespremljene izmjene i učitate najnoviju udaljenu verziju.</target>
|
<target state="translated">Učitajte ponovo da odbacite lokalne nespremljene izmjene i učitate najnoviju udaljenu verziju.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Učitaj ponovo</target>
|
<target state="translated">Učitaj ponovo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument učitan ponovo s najnovijim izmjenama.</target>
|
<target state="translated">Dokument učitan ponovo s najnovijim izmjenama.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument učitan ponovo.</target>
|
<target state="translated">Dokument učitan ponovo.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sljedeći dokument</target>
|
<target state="translated">Sljedeći dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Prethodni dokument</target>
|
<target state="translated">Prethodni dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Spremi dokument</target>
|
<target state="translated">Spremi dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Spremi i zatvori / sljedeći</target>
|
<target state="translated">Spremi i zatvori / sljedeći</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri dohvaćanju sadržaja verzije</target>
|
<target state="translated">Greška pri dohvaćanju sadržaja verzije</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri dohvaćanju prijedloga.</target>
|
<target state="translated">Greška pri dohvaćanju prijedloga.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" uspješno spremljen.</target>
|
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" uspješno spremljen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri spremanju dokumenta</target>
|
<target state="translated">Greška pri spremanju dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri brisanju dokumenta</target>
|
<target state="translated">Greška pri brisanju dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ova operacija će trajno ponovo kreirati arhivsku datoteku za ovaj dokument.</target>
|
<target state="translated">Ova operacija će trajno ponovo kreirati arhivsku datoteku za ovaj dokument.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Arhivska datoteka će se ponovo generirati s trenutnim postavkama.</target>
|
<target state="translated">Arhivska datoteka će se ponovo generirati s trenutnim postavkama.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri izvršavanju operacije</target>
|
<target state="translated">Greška pri izvršavanju operacije</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri preuzimanju dokumenta</target>
|
<target state="translated">Greška pri preuzimanju dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Prilagodi stranicu</target>
|
<target state="translated">Prilagodi stranicu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri izvršavanju operacije uređivanja PDF-a</target>
|
<target state="translated">Greška pri izvršavanju operacije uređivanja PDF-a</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Unesite trenutnu lozinku prije pokušaja uklanjanja.</target>
|
<target state="translated">Unesite trenutnu lozinku prije pokušaja uklanjanja.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri izvršavanju operacije uklanjanja lozinke</target>
|
<target state="translated">Greška pri izvršavanju operacije uklanjanja lozinke</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ispis nije uspio.</target>
|
<target state="translated">Ispis nije uspio.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri učitavanju dokumenta za ispis.</target>
|
<target state="translated">Greška pri učitavanju dokumenta za ispis.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Došlo je do greške pri učitavanju TIFF-a: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Došlo je do greške pri učitavanju TIFF-a: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Jednokratna migracija postavki u bazu podataka uspješno završena!</target>
|
<target state="translated">Jednokratna migracija postavki u bazu podataka uspješno završena!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nije moguće migrirati postavke u bazu podataka, pokušajte ručno spremiti.</target>
|
<target state="translated">Nije moguće migrirati postavke u bazu podataka, pokušajte ručno spremiti.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Možete ponovo pokrenuti obilazak sa stranice postavki.</target>
|
<target state="translated">Možete ponovo pokrenuti obilazak sa stranice postavki.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF szerkesztő</target>
|
<target state="translated">PDF szerkesztő</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Alapértelmezett engedélyek</target>
|
<target state="translated">Alapértelmezett engedélyek</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> A beállítások erre a felhasználói fiókra vonatkoznak a webes felületen létrehozott objektumok (címkék, levelezési szabályok stb. de nem a dokumentumok) esetében. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Törlés</target>
|
<target state="translated">Törlés</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Igen</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Jelszóvédelem eltávolítása</target>
|
<target state="translated">Jelszóvédelem eltávolítása</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hozzon létre egy nem védett másolatot, vagy cserélje ki a meglévő fájlt.</target>
|
<target state="translated">Hozzon létre egy nem védett másolatot, vagy cserélje ki a meglévő fájlt.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Indítás</target>
|
<target state="translated">Indítás</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba az előnézet betöltésekor</target>
|
<target state="translated">Hiba az előnézet betöltésekor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Előnézet betöltése</target>
|
<target state="translated">Előnézet betöltése</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Szűrés tulajdonos szerint</target>
|
<target state="translated">Szűrés tulajdonos szerint</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Igen</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Jelszó megadása</target>
|
<target state="translated">Jelszó megadása</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba a metaadatok lekérdezésében</target>
|
<target state="translated">Hiba a metaadatok lekérdezésében</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</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>
|
<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>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Következő dokumentum</target>
|
<target state="translated">Következő dokumentum</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Előző dokumentum</target>
|
<target state="translated">Előző dokumentum</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumentum mentése</target>
|
<target state="translated">Dokumentum mentése</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Mentés és bezárás / következő</target>
|
<target state="translated">Mentés és bezárás / következő</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba a javaslatok lekérdezésében.</target>
|
<target state="translated">Hiba a javaslatok lekérdezésében.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">"<x id="PH" equiv-text="newValues.title"/>" sikeresen elmentve.</target>
|
<target state="translated">"<x id="PH" equiv-text="newValues.title"/>" sikeresen elmentve.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumentum mentési hiba</target>
|
<target state="translated">Dokumentum mentési hiba</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba a dokumentum törlésében</target>
|
<target state="translated">Hiba a dokumentum törlésében</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ez a művelet véglegesen újragenerálja a dokumentum archív fájlját.</target>
|
<target state="translated">Ez a művelet véglegesen újragenerálja a dokumentum archív fájlját.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Az archív fájl újragenerálódik majd a jelenlegi beállításokkal.</target>
|
<target state="translated">Az archív fájl újragenerálódik majd a jelenlegi beállításokkal.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba a művelet végrehajtásában</target>
|
<target state="translated">Hiba a művelet végrehajtásában</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba a dokumentum letöltésekor</target>
|
<target state="translated">Hiba a dokumentum letöltésekor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Oldal illesztése</target>
|
<target state="translated">Oldal illesztése</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba a PDF szerkesztése közben</target>
|
<target state="translated">Hiba a PDF szerkesztése közben</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Hiba tiff betöltésekor: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Hiba tiff betöltésekor: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sikeresen befejeződött a beállítások egyszeri migrálása az adatbázisba!</target>
|
<target state="translated">Sikeresen befejeződött a beállítások egyszeri migrálása az adatbázisba!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nem sikerült a beállításokat az adatbázisba migrálni, kérjük, próbálja meg manuálisan menteni.</target>
|
<target state="translated">Nem sikerült a beállításokat az adatbázisba migrálni, kérjük, próbálja meg manuálisan menteni.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">A túrát a beállítások oldalról indíthatja újra.</target>
|
<target state="translated">A túrát a beállítások oldalról indíthatja újra.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Editor PDF</target>
|
<target state="translated">Editor PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Izin bawaan</target>
|
<target state="translated">Izin bawaan</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Pengaturan berlaku untuk akun pengguna ini pada objek (Tag, Aturan Email, dsb. namun bukan dokumen) yang dibuat lewat antarmuka web. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Bersihkan</target>
|
<target state="translated">Bersihkan</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Ya</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Mulai</target>
|
<target state="translated">Mulai</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kesalahan saat memuat pratinjau</target>
|
<target state="translated">Kesalahan saat memuat pratinjau</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Buka pratinjau</target>
|
<target state="translated">Buka pratinjau</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Saring berdasarkan pemilik</target>
|
<target state="translated">Saring berdasarkan pemilik</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Ya</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Masukan Kata Sandi</target>
|
<target state="translated">Masukan Kata Sandi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kesalahan saat mendapatkan metadata</target>
|
<target state="translated">Kesalahan saat mendapatkan metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Terjadi kesalahan saat memuat konten: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Terjadi kesalahan saat memuat konten: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumen berikutnya</target>
|
<target state="translated">Dokumen berikutnya</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumen sebelumnya</target>
|
<target state="translated">Dokumen sebelumnya</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Simpan dokumen</target>
|
<target state="translated">Simpan dokumen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Simpan dan tutup / lanjut</target>
|
<target state="translated">Simpan dan tutup / lanjut</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Gagal mengambil saran.</target>
|
<target state="translated">Gagal mengambil saran.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumen "<x id="PH" equiv-text="newValues.title"/>" berhasil disimpan.</target>
|
<target state="translated">Dokumen "<x id="PH" equiv-text="newValues.title"/>" berhasil disimpan.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kesalahan saat menyimpan dokumen</target>
|
<target state="translated">Kesalahan saat menyimpan dokumen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kesalahan saat menghapus dokumen</target>
|
<target state="translated">Kesalahan saat menghapus dokumen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tindakan ini akan membuat ulang file arsip dokumen secara permanen.</target>
|
<target state="translated">Tindakan ini akan membuat ulang file arsip dokumen secara permanen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">File arsip akan dibuat ulang dengan pengaturan saat ini.</target>
|
<target state="translated">File arsip akan dibuat ulang dengan pengaturan saat ini.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Gagal menjalankan operasi</target>
|
<target state="translated">Gagal menjalankan operasi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Gagal mengunduh dokumen</target>
|
<target state="translated">Gagal mengunduh dokumen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sesuaikan halaman</target>
|
<target state="translated">Sesuaikan halaman</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Gagal menjalankan proses edit PDF</target>
|
<target state="translated">Gagal menjalankan proses edit PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pencetakan gagal.</target>
|
<target state="translated">Pencetakan gagal.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Error memuat dokumen untuk dicetak.</target>
|
<target state="translated">Error memuat dokumen untuk dicetak.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Terjadi kesalahan saat memuat tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Terjadi kesalahan saat memuat tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Berhasil menyelesaikan migrasi pengaturan satu kali ke basis data!</target>
|
<target state="translated">Berhasil menyelesaikan migrasi pengaturan satu kali ke basis data!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tidak dapat memigrasikan pengaturan ke basis data, silakan coba simpan secara manual.</target>
|
<target state="translated">Tidak dapat memigrasikan pengaturan ke basis data, silakan coba simpan secara manual.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Anda dapat memulai ulang tur dari halaman pengaturan.</target>
|
<target state="translated">Anda dapat memulai ulang tur dari halaman pengaturan.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Editor PDF</target>
|
<target state="translated">Editor PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Autorizzazioni predefinite</target>
|
<target state="translated">Autorizzazioni predefinite</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Le impostazioni si applicano a questo account utente per gli oggetti (tag, regole di posta, ecc. ma non documenti) creati tramite l'interfaccia utente web. </target>
|
<target state="translated"> Le impostazioni si applicano a questo account utente per oggetti (Tag, Regole postali, ecc.) creati tramite l'interfaccia utente web. Queste impostazioni non sono applicabili ai documenti. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Pulisci</target>
|
<target state="final">Pulisci</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Sì</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Rimuovi la protezione con password</target>
|
<target state="translated">Rimuovi la protezione con password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Crea una copia non protetta o sostituisci il file esistente.</target>
|
<target state="translated">Crea una copia non protetta o sostituisci il file esistente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Avvia</target>
|
<target state="translated">Avvia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il caricamento dell'anteprima</target>
|
<target state="translated">Errore durante il caricamento dell'anteprima</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Apri anteprima</target>
|
<target state="translated">Apri anteprima</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtra per proprietario</target>
|
<target state="translated">Filtra per proprietario</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Sì</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Inserisci password</target>
|
<target state="translated">Inserisci password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il recupero dei metadati</target>
|
<target state="translated">Errore durante il recupero dei metadati</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Si è verificato un errore durante il caricamento del contenuto: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Si è verificato un errore durante il caricamento del contenuto: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Il documento è stato aggiornato</target>
|
<target state="translated">Il documento è stato aggiornato</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Il documento è stato aggiornato alle <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Il documento è stato aggiornato alle <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ricarica per eliminare le modifiche locali non salvate e caricare la versione remota più recente.</target>
|
<target state="translated">Ricarica per eliminare le modifiche locali non salvate e caricare la versione remota più recente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ricarica</target>
|
<target state="translated">Ricarica</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento ricaricato con le ultime modifiche.</target>
|
<target state="translated">Documento ricaricato con le ultime modifiche.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento ricaricato.</target>
|
<target state="translated">Documento ricaricato.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento successivo</target>
|
<target state="translated">Documento successivo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento precedente</target>
|
<target state="translated">Documento precedente</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Salva documento</target>
|
<target state="translated">Salva documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Salva e chiudi / avanti</target>
|
<target state="translated">Salva e chiudi / avanti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il recupero del contenuto della versione</target>
|
<target state="translated">Errore durante il recupero del contenuto della versione</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il recupero dei suggerimenti.</target>
|
<target state="translated">Errore durante il recupero dei suggerimenti.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento "<x id="PH" equiv-text="newValues.title"/>" salvato correttamente.</target>
|
<target state="translated">Documento "<x id="PH" equiv-text="newValues.title"/>" salvato correttamente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il salvataggio del documento "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="translated">Errore durante il salvataggio del documento "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il salvataggio del documento</target>
|
<target state="translated">Errore durante il salvataggio del documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vuoi davvero spostare il documento "<x id="PH" equiv-text="this.document().title"/>" nel cestino?</target>
|
<target state="translated">Vuoi davvero spostare il documento "<x id="PH" equiv-text="this.document().title"/>" nel cestino?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante l'eliminazione del documento</target>
|
<target state="translated">Errore durante l'eliminazione del documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Questa operazione ricreerà in modo permanente il file di archivio per questo documento.</target>
|
<target state="translated">Questa operazione ricreerà in modo permanente il file di archivio per questo documento.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Il file di archivio verrà rigenerato con le impostazioni correnti.</target>
|
<target state="translated">Il file di archivio verrà rigenerato con le impostazioni correnti.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">L'operazione di rielaborazione per "<x id="PH" equiv-text="this.document().title"/>" inizierà in background.</target>
|
<target state="translated">L'operazione di rielaborazione per "<x id="PH" equiv-text="this.document().title"/>" inizierà in background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante l'esecuzione dell'operazione</target>
|
<target state="translated">Errore durante l'esecuzione dell'operazione</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il download del documento</target>
|
<target state="translated">Errore durante il download del documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Adatta alla pagina</target>
|
<target state="translated">Adatta alla pagina</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">L'operazione di modifica PDF per "<x id="PH" equiv-text="this.document().title"/>" inizierà in background.</target>
|
<target state="translated">L'operazione di modifica PDF per "<x id="PH" equiv-text="this.document().title"/>" inizierà in background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante l'esecuzione dell'operazione di modifica PDF</target>
|
<target state="translated">Errore durante l'esecuzione dell'operazione di modifica PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Inserisci la password corrente prima di tentare di rimuoverla.</target>
|
<target state="translated">Inserisci la password corrente prima di tentare di rimuoverla.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">L'operazione di rimozione della password per "<x id="PH" equiv-text="this.document().title"/>" inizierà in background.</target>
|
<target state="translated">L'operazione di rimozione della password per "<x id="PH" equiv-text="this.document().title"/>" inizierà in background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante l'esecuzione dell'operazione di rimozione della password</target>
|
<target state="translated">Errore durante l'esecuzione dell'operazione di rimozione della password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Stampa non riuscita.</target>
|
<target state="translated">Stampa non riuscita.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Errore durante il caricamento del documento per la stampa.</target>
|
<target state="translated">Errore durante il caricamento del documento per la stampa.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Si è verificato un errore durante il caricamento del tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Si è verificato un errore durante il caricamento del tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9716,7 +9720,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">8</context>
|
<context context-type="linenumber">8</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> thumbnail</target>
|
<target state="translated"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> miniatura</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2784168796433474565" datatype="html" approved="yes">
|
<trans-unit id="2784168796433474565" datatype="html" approved="yes">
|
||||||
<source>Filter by tag</source>
|
<source>Filter by tag</source>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Migrazione una tantum delle impostazioni al database completata con successo!</target>
|
<target state="translated">Migrazione una tantum delle impostazioni al database completata con successo!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Impossibile migrare le impostazioni nel database. Prova a salvarle manualmente.</target>
|
<target state="translated">Impossibile migrare le impostazioni nel database. Prova a salvarle manualmente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Puoi riavviare il tour dalla pagina delle impostazioni.</target>
|
<target state="translated">Puoi riavviare il tour dalla pagina delle impostazioni.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">デフォルト権限</target>
|
<target state="translated">デフォルト権限</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> 設定はWeb UI 経由で作成されたオブジェクト (タグ、メール ルールなど、ドキュメントは除く) に対してこのユーザー アカウントに適用されます。 </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">解除</target>
|
<target state="translated">解除</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">はい</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">プレビューの読み込みに失敗しました</target>
|
<target state="translated">プレビューの読み込みに失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">プレビューを開く</target>
|
<target state="translated">プレビューを開く</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">所有者で絞り込む</target>
|
<target state="translated">所有者で絞り込む</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">はい</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">パスワードを入力</target>
|
<target state="translated">パスワードを入力</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">メタデータの取得に失敗しました</target>
|
<target state="translated">メタデータの取得に失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">コンテンツ: <x id="PH" equiv-text="err.message ?? err.toString()"/> の読み込み中にエラーが発生しました</target>
|
<target state="translated">コンテンツ: <x id="PH" equiv-text="err.message ?? err.toString()"/> の読み込み中にエラーが発生しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">次のドキュメント</target>
|
<target state="translated">次のドキュメント</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">前のドキュメント</target>
|
<target state="translated">前のドキュメント</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ドキュメントを保存</target>
|
<target state="translated">ドキュメントを保存</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">保存して閉じる / 次へ</target>
|
<target state="translated">保存して閉じる / 次へ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">提案の取得に失敗しました</target>
|
<target state="translated">提案の取得に失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ドキュメント「<x id="PH" equiv-text="newValues.title"/>」が正常に保存されました。</target>
|
<target state="translated">ドキュメント「<x id="PH" equiv-text="newValues.title"/>」が正常に保存されました。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ドキュメントの保存に失敗しました</target>
|
<target state="translated">ドキュメントの保存に失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ドキュメントの削除に失敗しました</target>
|
<target state="translated">ドキュメントの削除に失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">この操作により、このドキュメントのアーカイブファイルが永続的に再作成されます。</target>
|
<target state="translated">この操作により、このドキュメントのアーカイブファイルが永続的に再作成されます。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">アーカイブファイルは現在の設定で再生成されます。</target>
|
<target state="translated">アーカイブファイルは現在の設定で再生成されます。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">操作の実行に失敗しました</target>
|
<target state="translated">操作の実行に失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ドキュメントのダウンロードに失敗しました</target>
|
<target state="translated">ドキュメントのダウンロードに失敗しました</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ページに合わせる</target>
|
<target state="translated">ページに合わせる</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">TIFFの読み込み中にエラーが発生しました: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">TIFFの読み込み中にエラーが発生しました: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">データベースへのワンタイム設定移行が正常に完了しました!</target>
|
<target state="translated">データベースへのワンタイム設定移行が正常に完了しました!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">データベースに設定を移行できません。手動で保存してみてください。</target>
|
<target state="translated">データベースに設定を移行できません。手動で保存してみてください。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">設定ページからツアーを再開することができます</target>
|
<target state="translated">設定ページからツアーを再開することができます</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF 편집기</target>
|
<target state="translated">PDF 편집기</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">기본 권한</target>
|
<target state="translated">기본 권한</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> 이 사용자 계정에는 웹 UI를 통해 만든 개체(문서가 아닌 태그, 메일 규칙 등)에 대한 설정이 적용됩니다 </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">지우기</target>
|
<target state="translated">지우기</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">예</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">미리보기 로딩 오류</target>
|
<target state="translated">미리보기 로딩 오류</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">미리보기 열기</target>
|
<target state="translated">미리보기 열기</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">예</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">비밀번호 입력</target>
|
<target state="translated">비밀번호 입력</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">메타데이터를 가져오는데 실패하였습니다.</target>
|
<target state="translated">메타데이터를 가져오는데 실패하였습니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">콘텐츠를 로드하는 동안 오류가 발생했습니다: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">콘텐츠를 로드하는 동안 오류가 발생했습니다: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">다음 문서</target>
|
<target state="translated">다음 문서</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">이전 문서</target>
|
<target state="translated">이전 문서</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">문서 저장</target>
|
<target state="translated">문서 저장</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">저장 및 닫기 / 다음</target>
|
<target state="translated">저장 및 닫기 / 다음</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">추천을 가져오는데 실패하였습니다.</target>
|
<target state="translated">추천을 가져오는데 실패하였습니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">문서 "<x id="PH" equiv-text="newValues.title"/>"가 성공적으로 저장되었습니다.</target>
|
<target state="translated">문서 "<x id="PH" equiv-text="newValues.title"/>"가 성공적으로 저장되었습니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">문서를 저장하는데 오류가 발생하였습니다.</target>
|
<target state="translated">문서를 저장하는데 오류가 발생하였습니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">문서 삭제 오류</target>
|
<target state="translated">문서 삭제 오류</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">이 작업을 수행하면 이 문서의 아카이브 파일이 영구적으로 다시 생성됩니다.</target>
|
<target state="translated">이 작업을 수행하면 이 문서의 아카이브 파일이 영구적으로 다시 생성됩니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">아카이브 파일은 현재 설정으로 다시 생성됩니다.</target>
|
<target state="translated">아카이브 파일은 현재 설정으로 다시 생성됩니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">작업 수행중 오류가 발생하였습니다.</target>
|
<target state="translated">작업 수행중 오류가 발생하였습니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">문서 다운로드 중 오류 발생</target>
|
<target state="translated">문서 다운로드 중 오류 발생</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">페이지 맞춤</target>
|
<target state="translated">페이지 맞춤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">인쇄 실패.</target>
|
<target state="translated">인쇄 실패.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">tiff를 로드하는 동안 오류가 발생했습니다:<x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">tiff를 로드하는 동안 오류가 발생했습니다:<x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">데이터베이스에 대한 설정의 일회성 마이그레이션을 성공적으로 완료했습니다!</target>
|
<target state="translated">데이터베이스에 대한 설정의 일회성 마이그레이션을 성공적으로 완료했습니다!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">설정을 데이터베이스로 마이그레이션할 수 없는 경우 수동으로 저장해 보세요.</target>
|
<target state="translated">설정을 데이터베이스로 마이그레이션할 수 없는 경우 수동으로 저장해 보세요.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">나중에 설정 페이지에서 다시 둘러보기를 할 수 있습니다.</target>
|
<target state="translated">나중에 설정 페이지에서 다시 둘러보기를 할 수 있습니다.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Standardberechtegungen</target>
|
<target state="translated">Standardberechtegungen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Läschen</target>
|
<target state="final">Läschen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Jo</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Jo</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Passwuert aginn</target>
|
<target state="translated">Passwuert aginn</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Išvalyti</target>
|
<target state="translated">Išvalyti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Taip</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Taip</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Įveskite slaptažodį</target>
|
<target state="translated">Įveskite slaptažodį</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kitas dokumentas</target>
|
<target state="translated">Kitas dokumentas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ankstesnis dokumentas</target>
|
<target state="translated">Ankstesnis dokumentas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Išsaugoti dokumentą</target>
|
<target state="translated">Išsaugoti dokumentą</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nustatymų perkėlimas į duomenų bazę sėkmingai atliktas!</target>
|
<target state="translated">Nustatymų perkėlimas į duomenų bazę sėkmingai atliktas!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nepavyko perkelti nustatymų į duomenų bazę, pabandykite išsaugoti rankiniu būdu.</target>
|
<target state="translated">Nepavyko perkelti nustatymų į duomenų bazę, pabandykite išsaugoti rankiniu būdu.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ekskursiją galite paleisti iš naujo nustatymų puslapyje.</target>
|
<target state="translated">Ekskursiją galite paleisti iš naujo nustatymų puslapyje.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Noklusētās atļaujas</target>
|
<target state="translated">Noklusētās atļaujas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Notīrīt</target>
|
<target state="translated">Notīrīt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Enter Password</target>
|
<target state="needs-translation">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Clear</target>
|
<target state="needs-translation">Clear</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Enter Password</target>
|
<target state="needs-translation">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Clear</target>
|
<target state="needs-translation">Clear</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="needs-translation">Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="needs-translation">Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Enter Password</target>
|
<target state="needs-translation">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF-editor</target>
|
<target state="translated">PDF-editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Standaard rechten</target>
|
<target state="translated">Standaard rechten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Instellingen zijn van toepassing op dit account voor objecten (tags, mailregels, enz., maar niet op documenten) die via de webinterface zijn aangemaakt. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3572,7 +3572,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/document-attributes/document-attributes.component.ts</context>
|
<context context-type="sourcefile">src/app/components/manage/document-attributes/document-attributes.component.ts</context>
|
||||||
<context context-type="linenumber">105</context>
|
<context context-type="linenumber">105</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document types</target>
|
<target state="translated">Documentsoorten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8835528846812581148" datatype="html">
|
<trans-unit id="8835528846812581148" datatype="html">
|
||||||
<source>Storage paths</source>
|
<source>Storage paths</source>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Leegmaken</target>
|
<target state="final">Leegmaken</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Verwijder wachtwoordbeveiliging</target>
|
<target state="translated">Verwijder wachtwoordbeveiliging</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Maak een niet-beveiligde kopie aan of vervang het bestaande bestand.</target>
|
<target state="translated">Maak een niet-beveiligde kopie aan of vervang het bestaande bestand.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Begin</target>
|
<target state="translated">Begin</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij laden voorbeeld</target>
|
<target state="translated">Fout bij laden voorbeeld</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Voorbeeld openen</target>
|
<target state="translated">Voorbeeld openen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filter op eigenaar</target>
|
<target state="translated">Filter op eigenaar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Wachtwoord invoeren</target>
|
<target state="translated">Wachtwoord invoeren</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij ophalen metadata</target>
|
<target state="translated">Fout bij ophalen metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</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>
|
<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>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Het document is bijgewerkt</target>
|
<target state="translated">Het document is bijgewerkt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Volgend document</target>
|
<target state="translated">Volgend document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vorig document</target>
|
<target state="translated">Vorig document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document opslaan</target>
|
<target state="translated">Document opslaan</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Opslaan en sluiten/volgende</target>
|
<target state="translated">Opslaan en sluiten/volgende</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij ophalen suggesties.</target>
|
<target state="translated">Fout bij ophalen suggesties.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document "<x id="PH" equiv-text="newValues.title"/>" succesvol opgeslagen.</target>
|
<target state="translated">Document "<x id="PH" equiv-text="newValues.title"/>" succesvol opgeslagen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij opslaan document</target>
|
<target state="translated">Fout bij opslaan document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij verwijderen document</target>
|
<target state="translated">Fout bij verwijderen document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Met deze bewerking wordt het gearchiveerde bestand voor dit document permanent opnieuw gemaakt.</target>
|
<target state="translated">Met deze bewerking wordt het gearchiveerde bestand voor dit document permanent opnieuw gemaakt.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Het gearchiveerde bestand wordt opnieuw gegenereerd met de huidige instellingen.</target>
|
<target state="translated">Het gearchiveerde bestand wordt opnieuw gegenereerd met de huidige instellingen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij uitvoeren bewerking</target>
|
<target state="translated">Fout bij uitvoeren bewerking</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij downloaden document</target>
|
<target state="translated">Fout bij downloaden document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pagina passend maken</target>
|
<target state="translated">Pagina passend maken</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout tijdens het bewerken van PDF</target>
|
<target state="translated">Fout tijdens het bewerken van PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Voer het huidige wachtwoord in voordat je het verwijdert.</target>
|
<target state="translated">Voer het huidige wachtwoord in voordat je het verwijdert.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij het verwijderen van wachtwoord</target>
|
<target state="translated">Fout bij het verwijderen van wachtwoord</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Printen mislukt.</target>
|
<target state="translated">Printen mislukt.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij laden van document voor printen.</target>
|
<target state="translated">Fout bij laden van document voor printen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fout bij het laden van tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Fout bij het laden van tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eenmalige migratie van instellingen naar de database is succesvol voltooid!</target>
|
<target state="translated">Eenmalige migratie van instellingen naar de database is succesvol voltooid!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kan instellingen niet migreren naar de database, probeer handmatig op te slaan.</target>
|
<target state="translated">Kan instellingen niet migreren naar de database, probeer handmatig op te slaan.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Je kan de rondleiding herstarten vanaf de instellingen pagina.</target>
|
<target state="translated">Je kan de rondleiding herstarten vanaf de instellingen pagina.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF-redigeringsprogram</target>
|
<target state="translated">PDF-redigeringsprogram</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Standardtillatelser</target>
|
<target state="translated">Standardtillatelser</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Innstillingene gjelder denne brukerkontoen for objekter (Merker, postregler, etc. men ikke dokumenter) opprettet via webgrensesnittet. </target>
|
<target state="translated"> Innstillinger gjelder denne brukerkontoen for objekter (Etiketter, postregler, etc.) som er opprettet via web-grensesnittet. Disse innstillingene gjelder ikke for dokumenter. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2076,7 +2076,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||||
<context context-type="linenumber">96</context>
|
<context context-type="linenumber">96</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Search tasks</target>
|
<target state="translated">Søk oppgaver</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6849725902312323996" datatype="html">
|
<trans-unit id="6849725902312323996" datatype="html">
|
||||||
<source>Reset filters</source>
|
<source>Reset filters</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -2620,7 +2620,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">123</context>
|
<context context-type="linenumber">123</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">E-postforbruk</target>
|
<target state="translated">E-post-import</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="29832309535656200" datatype="html">
|
<trans-unit id="29832309535656200" datatype="html">
|
||||||
<source>System</source>
|
<source>System</source>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tøm</target>
|
<target state="translated">Tøm</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fjern passordbeskyttelse</target>
|
<target state="translated">Fjern passordbeskyttelse</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Opprett en ubeskyttet kopi eller erstatte den eksisterende filen.</target>
|
<target state="translated">Opprett en ubeskyttet kopi eller erstatte den eksisterende filen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Start</target>
|
<target state="translated">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4908,7 +4924,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html</context>
|
||||||
<context context-type="linenumber">32</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Paperløst vil bare behandle e-poster som passer til <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>hele<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> av kriteriene som er angitt nedenfor.</target>
|
<target state="translated">Paperless vil bare behandle e-poster som passer til <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>hele<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> av kriteriene som er angitt nedenfor.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7046259383943324039" datatype="html">
|
<trans-unit id="7046259383943324039" datatype="html">
|
||||||
<source>Folder</source>
|
<source>Folder</source>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -6794,7 +6810,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/input/tags/tags.component.html</context>
|
||||||
<context context-type="linenumber">56</context>
|
<context context-type="linenumber">56</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrer dokumenter med disse Etikettene</target>
|
<target state="translated">Filtrer dokumenter med disse etikettene</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1400555558847223243" datatype="html">
|
<trans-unit id="1400555558847223243" datatype="html">
|
||||||
<source>Suggestion:</source>
|
<source>Suggestion:</source>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved forhåndsvisning</target>
|
<target state="translated">Feil ved forhåndsvisning</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Åpne forhåndsvisning</target>
|
<target state="translated">Åpne forhåndsvisning</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7462,7 +7478,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html</context>
|
||||||
<context context-type="linenumber">68</context>
|
<context context-type="linenumber">68</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Share link</target>
|
<target state="translated">Del kobling</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2618101617221155143" datatype="html">
|
<trans-unit id="2618101617221155143" datatype="html">
|
||||||
<source>Copy link</source>
|
<source>Copy link</source>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrer etter eier</target>
|
<target state="translated">Filtrer etter eier</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8412,7 +8416,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-asn/document-asn.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-asn/document-asn.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Searching document with asn <x id="INTERPOLATION" equiv-text="{{asn()}}"/></target>
|
<target state="translated">Søker etter dokument med asn<x id="INTERPOLATION" equiv-text="{{asn()}}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1407560924967345762" datatype="html">
|
<trans-unit id="1407560924967345762" datatype="html">
|
||||||
<source>Page</source>
|
<source>Page</source>
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Skriv inn passord</target>
|
<target state="translated">Skriv inn passord</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved henting av metadata</target>
|
<target state="translated">Feil ved henting av metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Det oppstod en feil ved lasting av innhold: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Det oppstod en feil ved lasting av innhold: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumentet ble oppdatert</target>
|
<target state="translated">Dokumentet ble oppdatert</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumentet ble oppdatert på <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokumentet ble oppdatert på <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Last på nytt for å forkaste dine lokale ulagrede redigeringer og last den nyeste eksterne versjonen.</target>
|
<target state="translated">Last på nytt for å forkaste dine lokale ulagrede redigeringer og last den nyeste eksterne versjonen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Last på nytt</target>
|
<target state="translated">Last på nytt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokumentet lastet på nytt med siste endringer.</target>
|
<target state="translated">Dokumentet lastet på nytt med siste endringer.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument lastet på nytt.</target>
|
<target state="translated">Dokument lastet på nytt.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Neste dokument</target>
|
<target state="translated">Neste dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Forrige dokument</target>
|
<target state="translated">Forrige dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Lagre dokument</target>
|
<target state="translated">Lagre dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Lagre og lukk / neste</target>
|
<target state="translated">Lagre og lukk / neste</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved henting av versjonsinnhold</target>
|
<target state="translated">Feil ved henting av versjonsinnhold</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved henting av forslag.</target>
|
<target state="translated">Feil ved henting av forslag.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" ble lagret.</target>
|
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" ble lagret.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved lagring av dokument "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="translated">Feil ved lagring av dokument "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved lagring av dokument</target>
|
<target state="translated">Feil ved lagring av dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ønsker du virkelig å flytte dokumentet "<x id="PH" equiv-text="this.document().title"/>" til papirkurven?</target>
|
<target state="translated">Ønsker du virkelig å flytte dokumentet "<x id="PH" equiv-text="this.document().title"/>" til papirkurven?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved sletting av dokumentet</target>
|
<target state="translated">Feil ved sletting av dokumentet</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Denne operasjonen vil permanent gjenskape arkivfilen for dette dokumentet.</target>
|
<target state="translated">Denne operasjonen vil permanent gjenskape arkivfilen for dette dokumentet.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Arkivfilen vil bli generert på nytt med de nåværende innstillingene.</target>
|
<target state="translated">Arkivfilen vil bli generert på nytt med de nåværende innstillingene.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ny import for "<x id="PH" equiv-text="this.document().title"/>" vil begynne i bakgrunnen.</target>
|
<target state="translated">Ny import for "<x id="PH" equiv-text="this.document().title"/>" vil begynne i bakgrunnen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil under utføring av oppgaven</target>
|
<target state="translated">Feil under utføring av oppgaven</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved nedlasting av dokument</target>
|
<target state="translated">Feil ved nedlasting av dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tilpass siden</target>
|
<target state="translated">Tilpass siden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF redigering for "<x id="PH" equiv-text="this.document().title"/>" vil begynne i bakgrunnen.</target>
|
<target state="translated">PDF redigering for "<x id="PH" equiv-text="this.document().title"/>" vil begynne i bakgrunnen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil under utføring av PDF-redigering</target>
|
<target state="translated">Feil under utføring av PDF-redigering</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Skriv inn nåværende passord før du prøver å fjerne det.</target>
|
<target state="translated">Skriv inn nåværende passord før du prøver å fjerne det.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF redigering for "<x id="PH" equiv-text="this.document().title"/>" vil begynne i bakgrunnen.</target>
|
<target state="translated">PDF redigering for "<x id="PH" equiv-text="this.document().title"/>" vil begynne i bakgrunnen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil under fjerning av passord</target>
|
<target state="translated">Feil under fjerning av passord</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Utskrift mislyktes.</target>
|
<target state="translated">Utskrift mislyktes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Feil ved lasting av dokument for utskrift.</target>
|
<target state="translated">Feil ved lasting av dokument for utskrift.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">En feil oppstod under lasting av tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">En feil oppstod under lasting av tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9716,7 +9720,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">8</context>
|
<context context-type="linenumber">8</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> thumbnail</target>
|
<target state="translated"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> miniatyr</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2784168796433474565" datatype="html">
|
<trans-unit id="2784168796433474565" datatype="html">
|
||||||
<source>Filter by tag</source>
|
<source>Filter by tag</source>
|
||||||
@@ -10004,7 +10008,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
<context context-type="linenumber">135</context>
|
<context context-type="linenumber">135</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">{VAR_PLURAL, plural, one {}=1 {1 dokument} other {E-post <x id="INTERPOLATION"/> dokumenter}}</target>
|
<target state="translated">{VAR_PLURAL, plural, one {}=1 {1 dokument} other {<x id="INTERPOLATION"/> dokumenter}}</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2243770355958919528" datatype="html">
|
<trans-unit id="2243770355958919528" datatype="html">
|
||||||
<source>(filtered)</source>
|
<source>(filtered)</source>
|
||||||
@@ -11324,7 +11328,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
||||||
<context context-type="linenumber">29</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Select all processed email messages</target>
|
<target state="translated">Velg alle behandlede e-postmeldinger</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8691920320483720007" datatype="html">
|
<trans-unit id="8691920320483720007" datatype="html">
|
||||||
<source>Received</source>
|
<source>Received</source>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Engangs migrering av innstillinger ble fullført til databasen!</target>
|
<target state="translated">Engangs migrering av innstillinger ble fullført til databasen!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kunne ikke overføre innstillinger til databasen, prøv å lagre manuelt.</target>
|
<target state="translated">Kunne ikke overføre innstillinger til databasen, prøv å lagre manuelt.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Du kan starte omvisningen på nytt fra innstillingssiden.</target>
|
<target state="translated">Du kan starte omvisningen på nytt fra innstillingssiden.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Edytor dokumentu PDF</target>
|
<target state="translated">Edytor dokumentu PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Domyślnie uprawnienia</target>
|
<target state="translated">Domyślnie uprawnienia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ustawienia dotyczą tego konta użytkownika dla obiektów (tagów, reguł poczty itd., ale nie dokumentów) tworzonych przez interfejs webowy.</target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Wyczyść</target>
|
<target state="final">Wyczyść</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Tak</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Usuń ochronę hasłem</target>
|
<target state="translated">Usuń ochronę hasłem</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Utwórz kopię bez zabezpieczenia lub zastąp istniejący plik.</target>
|
<target state="translated">Utwórz kopię bez zabezpieczenia lub zastąp istniejący plik.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Rozpocznij</target>
|
<target state="translated">Rozpocznij</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd ładowania podglądu</target>
|
<target state="translated">Błąd ładowania podglądu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Otwórz podgląd</target>
|
<target state="translated">Otwórz podgląd</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtruj wg właściciela</target>
|
<target state="translated">Filtruj wg właściciela</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Tak</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Wprowadź hasło</target>
|
<target state="translated">Wprowadź hasło</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd podczas pobierania metadanych</target>
|
<target state="translated">Błąd podczas pobierania metadanych</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Wystąpił błąd podczas ładowania zawartości: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Wystąpił błąd podczas ładowania zawartości: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument został zaktualizowany</target>
|
<target state="translated">Dokument został zaktualizowany</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument został zaktualizowany w <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokument został zaktualizowany w <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Załaduj ponownie, aby odrzucić lokalne niezapisane zmiany i załadować najnowszą wersję zdalną.</target>
|
<target state="translated">Załaduj ponownie, aby odrzucić lokalne niezapisane zmiany i załadować najnowszą wersję zdalną.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Przeładuj</target>
|
<target state="translated">Przeładuj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument ponownie załadowany z najnowszymi zmianami.</target>
|
<target state="translated">Dokument ponownie załadowany z najnowszymi zmianami.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument został przeładowany.</target>
|
<target state="translated">Dokument został przeładowany.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Następny dokument</target>
|
<target state="translated">Następny dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Poprzedni dokument</target>
|
<target state="translated">Poprzedni dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Zapisz dokument</target>
|
<target state="translated">Zapisz dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Zapisz i zamknij / następny</target>
|
<target state="translated">Zapisz i zamknij / następny</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd podczas pobierania zawartości wersji</target>
|
<target state="translated">Błąd podczas pobierania zawartości wersji</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">Błąd podczas pobierania sugestii.</target>
|
<target state="needs-review-translation" state-qualifier="leveraged-tm">Błąd podczas pobierania sugestii.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" zapisany pomyślnie.</target>
|
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" zapisany pomyślnie.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd podczas zapisywania dokumentu</target>
|
<target state="translated">Błąd podczas zapisywania dokumentu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd usuwania dokumentu</target>
|
<target state="translated">Błąd usuwania dokumentu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ta operacja spowoduje trwałe odtworzenie pliku archiwum dla tego dokumentu.</target>
|
<target state="translated">Ta operacja spowoduje trwałe odtworzenie pliku archiwum dla tego dokumentu.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Plik archiwum zostanie ponownie wygenerowany z bieżącymi ustawieniami.</target>
|
<target state="translated">Plik archiwum zostanie ponownie wygenerowany z bieżącymi ustawieniami.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd podczas wykonywania operacji</target>
|
<target state="translated">Błąd podczas wykonywania operacji</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd pobierania dokumentu</target>
|
<target state="translated">Błąd pobierania dokumentu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dopasuj do strony</target>
|
<target state="translated">Dopasuj do strony</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd podczas edycji dokumentu PDF</target>
|
<target state="translated">Błąd podczas edycji dokumentu PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Proszę wprowadzić aktualne hasło przed próbą jego usunięcia.</target>
|
<target state="translated">Proszę wprowadzić aktualne hasło przed próbą jego usunięcia.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd podczas operacji usuwania hasła</target>
|
<target state="translated">Błąd podczas operacji usuwania hasła</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd drukowania.</target>
|
<target state="translated">Błąd drukowania.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Błąd ładowania dokumentu do wydruku.</target>
|
<target state="translated">Błąd ładowania dokumentu do wydruku.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Wystąpił błąd podczas ładowania pliku TIFF: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Wystąpił błąd podczas ładowania pliku TIFF: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pomyślnie zakończona jednorazowa migracja ustawień do bazy danych!</target>
|
<target state="translated">Pomyślnie zakończona jednorazowa migracja ustawień do bazy danych!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nie można przenieść ustawień do bazy danych, spróbuj zapisać ręcznie.</target>
|
<target state="translated">Nie można przenieść ustawień do bazy danych, spróbuj zapisać ręcznie.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Możesz ponownie uruchomić przegląd aplikacji ze strony ustawień.</target>
|
<target state="translated">Możesz ponownie uruchomić przegląd aplikacji ze strony ustawień.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Editor de PDF</target>
|
<target state="translated">Editor de PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Permissões Padrão</target>
|
<target state="translated">Permissões Padrão</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> As configurações se aplicam a esta conta de usuário para objetos (Tags, Regras de Mail, etc. mas não para documentos) criados através da interface web. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Limpar</target>
|
<target state="final">Limpar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Sim</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Remover a proteção por senha</target>
|
<target state="translated">Remover a proteção por senha</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Crie uma cópia sem proteção ou substitua o arquivo existente.</target>
|
<target state="translated">Crie uma cópia sem proteção ou substitua o arquivo existente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Iniciar</target>
|
<target state="translated">Iniciar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7057,7 +7073,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao carregar pré-visualização</target>
|
<target state="translated">Erro ao carregar pré-visualização</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7065,7 +7081,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Abrir pré-visualização</target>
|
<target state="translated">Abrir pré-visualização</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8201,18 +8217,6 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrar por proprietário</target>
|
<target state="translated">Filtrar por proprietário</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Sim</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8783,7 +8787,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Digite a senha</target>
|
<target state="translated">Digite a senha</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8791,7 +8795,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao recuperar metadados</target>
|
<target state="translated">Erro ao recuperar metadados</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8799,11 +8803,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>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ocorreu um erro ao carregar o conteúdo: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Ocorreu um erro ao carregar o conteúdo: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8811,7 +8815,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8819,7 +8823,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8827,7 +8831,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8835,7 +8839,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8843,7 +8847,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8851,7 +8855,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8859,7 +8863,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Próximo documento</target>
|
<target state="translated">Próximo documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8867,7 +8871,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento anterior</target>
|
<target state="translated">Documento anterior</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8875,7 +8879,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8887,7 +8891,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Salvar documento</target>
|
<target state="translated">Salvar documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8895,7 +8899,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Salvar e fechar / próximo</target>
|
<target state="translated">Salvar e fechar / próximo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8903,7 +8907,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8911,7 +8915,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">Erro ao recuperar sugestões.</target>
|
<target state="needs-review-translation" state-qualifier="leveraged-tm">Erro ao recuperar sugestões.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8919,11 +8923,11 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documento "<x id="PH" equiv-text="newValues.title"/>" salvo com sucesso.</target>
|
<target state="translated">Documento "<x id="PH" equiv-text="newValues.title"/>" salvo com sucesso.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8931,7 +8935,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8939,7 +8943,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao salvar documento</target>
|
<target state="translated">Erro ao salvar documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8947,7 +8951,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8955,7 +8959,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8967,7 +8971,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao apagar documento</target>
|
<target state="translated">Erro ao apagar documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8975,7 +8979,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8987,7 +8991,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Essa operação irá recriar permanentemente o arquivo para este documento.</target>
|
<target state="translated">Essa operação irá recriar permanentemente o arquivo para este documento.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8995,7 +8999,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Os arquivos serão re-gerados com as configurações atuais.</target>
|
<target state="translated">Os arquivos serão re-gerados com as configurações atuais.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9003,7 +9007,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9011,7 +9015,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao executar a operação de divisão</target>
|
<target state="translated">Erro ao executar a operação de divisão</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9019,7 +9023,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao baixar o documento</target>
|
<target state="translated">Erro ao baixar o documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9027,7 +9031,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ajustar à Página</target>
|
<target state="translated">Ajustar à Página</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9035,7 +9039,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9043,7 +9047,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao executar a operação de divisão</target>
|
<target state="translated">Erro ao executar a operação de divisão</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9051,7 +9055,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Digite a senha atual antes de tentar removê-la.</target>
|
<target state="translated">Digite a senha atual antes de tentar removê-la.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9059,7 +9063,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9067,7 +9071,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao executar operação de remoção de senha</target>
|
<target state="translated">Erro ao executar operação de remoção de senha</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9075,7 +9079,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Impressão falhou.</target>
|
<target state="translated">Impressão falhou.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9083,7 +9087,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao carregar o documento para impressão.</target>
|
<target state="translated">Erro ao carregar o documento para impressão.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9091,11 +9095,11 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ocorreu um erro ao carregar tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Ocorreu um erro ao carregar tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12772,7 +12776,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">A migração de configurações para o banco de dados foi concluída com sucesso!</target>
|
<target state="translated">A migração de configurações para o banco de dados foi concluída com sucesso!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12780,7 +12784,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Não foi possível migrar as configurações para o banco de dados, por favor tente salvar manualmente.</target>
|
<target state="translated">Não foi possível migrar as configurações para o banco de dados, por favor tente salvar manualmente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12788,7 +12792,7 @@ Erro ao enviar documentos por e-mail</target>
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Você pode reiniciar o tour na página de configurações..</target>
|
<target state="translated">Você pode reiniciar o tour na página de configurações..</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Permissões predefinidas</target>
|
<target state="translated">Permissões predefinidas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">As configurações se aplicam a esta conta de utilizador para objetos (Etiquetas, Regras de Mail, etc. mas não documentos) criados através da interface web.</target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Limpar</target>
|
<target state="final">Limpar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Sim</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Abrir pré-visualização</target>
|
<target state="translated">Abrir pré-visualização</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Sim</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Introduzir Palavra-Passe</target>
|
<target state="translated">Introduzir Palavra-Passe</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao obter os metadados</target>
|
<target state="translated">Erro ao obter os metadados</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ocurreu um erro ao carregar o conteúdo: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Ocurreu um erro ao carregar o conteúdo: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao obter sugestões.</target>
|
<target state="translated">Erro ao obter sugestões.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Erro ao gravar documento</target>
|
<target state="translated">Erro ao gravar documento</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Terminado com sucesso a migração única das definições na base de dados!</target>
|
<target state="translated">Terminado com sucesso a migração única das definições na base de dados!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Incapaz de migrar as definições na base de dados, por favor, tente gravar manualmente.</target>
|
<target state="translated">Incapaz de migrar as definições na base de dados, por favor, tente gravar manualmente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pode reiniciar o tutorial através da página das Configurações.</target>
|
<target state="translated">Pode reiniciar o tutorial através da página das Configurações.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Editor PDF</target>
|
<target state="translated">Editor PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Permisiuni implicite</target>
|
<target state="translated">Permisiuni implicite</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Setările se aplică acestui cont de utilizator pentru obiecte (Etichete, Reguli de Mail etc. dar nu documente) create prin interfața web. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Curăță</target>
|
<target state="final">Curăță</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Da</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Elimină protecția prin parolă</target>
|
<target state="translated">Elimină protecția prin parolă</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Creează o copie neprotejată sau înlocuiește fișierul existent.</target>
|
<target state="translated">Creează o copie neprotejată sau înlocuiește fișierul existent.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pornire</target>
|
<target state="translated">Pornire</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la încărcarea previzualizării</target>
|
<target state="translated">Eroare la încărcarea previzualizării</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Deschide previzualizarea</target>
|
<target state="translated">Deschide previzualizarea</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrare după proprietar</target>
|
<target state="translated">Filtrare după proprietar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Da</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Introdu Parola</target>
|
<target state="translated">Introdu Parola</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la preluarea metadatelor</target>
|
<target state="translated">Eroare la preluarea metadatelor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</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>
|
<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>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Următorul document</target>
|
<target state="translated">Următorul document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documentul anterior</target>
|
<target state="translated">Documentul anterior</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Salvează documentul</target>
|
<target state="translated">Salvează documentul</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Salvează și închide / următorul</target>
|
<target state="translated">Salvează și închide / următorul</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la preluarea sugestiilor.</target>
|
<target state="translated">Eroare la preluarea sugestiilor.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Documentul "<x id="PH" equiv-text="newValues.title"/>salvat cu succes.</target>
|
<target state="translated">Documentul "<x id="PH" equiv-text="newValues.title"/>salvat cu succes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la salvarea documentului</target>
|
<target state="translated">Eroare la salvarea documentului</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la ștergerea documentului</target>
|
<target state="translated">Eroare la ștergerea documentului</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Această operație va recrea definitiv fișierul arhivă pentru acest document.</target>
|
<target state="translated">Această operație va recrea definitiv fișierul arhivă pentru acest document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fişierul arhivă va fi re-generat cu setările curente.</target>
|
<target state="translated">Fişierul arhivă va fi re-generat cu setările curente.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la executarea operațiunii</target>
|
<target state="translated">Eroare la executarea operațiunii</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la descărcarea documentului</target>
|
<target state="translated">Eroare la descărcarea documentului</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Potrivire pagină</target>
|
<target state="translated">Potrivire pagină</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la executarea operaţiei de editare PDF</target>
|
<target state="translated">Eroare la executarea operaţiei de editare PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Te rugăm să introduci parola curentă înainte de a încerca să o elimini.</target>
|
<target state="translated">Te rugăm să introduci parola curentă înainte de a încerca să o elimini.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la executarea operaţiei de eliminare a parolei</target>
|
<target state="translated">Eroare la executarea operaţiei de eliminare a parolei</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Imprimare eșuată.</target>
|
<target state="translated">Imprimare eșuată.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Eroare la încărcarea documentului pentru imprimare.</target>
|
<target state="translated">Eroare la încărcarea documentului pentru imprimare.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">S-a produs o eroare la încărcarea tiff-ului: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">S-a produs o eroare la încărcarea tiff-ului: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Migrarea unică a setărilor în baza de date a fost finalizată cu succes!</target>
|
<target state="translated">Migrarea unică a setărilor în baza de date a fost finalizată cu succes!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nu s-a putut migra setările în baza de date. Te rugăm să încerci să le salvezi manual.</target>
|
<target state="translated">Nu s-a putut migra setările în baza de date. Te rugăm să încerci să le salvezi manual.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Poți reporni turul din pagina de setări.</target>
|
<target state="translated">Poți reporni turul din pagina de setări.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Редактор PDF</target>
|
<target state="translated">Редактор PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Права по умолчанию</target>
|
<target state="translated">Права по умолчанию</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Настройки применятся для этой учеткой записи к объектам (Теги, Почтовые правила, и т.д, но не к документам), созданным через Веб-интерфейс</target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Очистить</target>
|
<target state="final">Очистить</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Да</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка при загрузке предпросмотра</target>
|
<target state="translated">Ошибка при загрузке предпросмотра</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Открыть предпросмотр</target>
|
<target state="translated">Открыть предпросмотр</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Фильтровать по владельцу</target>
|
<target state="translated">Фильтровать по владельцу</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Да</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Введите пароль</target>
|
<target state="translated">Введите пароль</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка при получении метаданных</target>
|
<target state="translated">Ошибка при получении метаданных</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Произошла ошибка при загрузке контента: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Произошла ошибка при загрузке контента: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Следующий документ</target>
|
<target state="translated">Следующий документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Предыдущий документ</target>
|
<target state="translated">Предыдущий документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Сохранить документ</target>
|
<target state="translated">Сохранить документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Сохранить и закрыть / далее</target>
|
<target state="translated">Сохранить и закрыть / далее</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-review-translation" state-qualifier="leveraged-tm">Ошибка при получении предложений.</target>
|
<target state="needs-review-translation" state-qualifier="leveraged-tm">Ошибка при получении предложений.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Документ "<x id="PH" equiv-text="newValues.title"/>" успешно сохранён.</target>
|
<target state="translated">Документ "<x id="PH" equiv-text="newValues.title"/>" успешно сохранён.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка при сохранении документа</target>
|
<target state="translated">Ошибка при сохранении документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка удаления документа</target>
|
<target state="translated">Ошибка удаления документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Это действие перезапишет файл архива для этого документа.</target>
|
<target state="translated">Это действие перезапишет файл архива для этого документа.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Файл архива будет сгенерирован с текущими настройками.</target>
|
<target state="translated">Файл архива будет сгенерирован с текущими настройками.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка при выполнении операции</target>
|
<target state="translated">Ошибка при выполнении операции</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка скачивания документа</target>
|
<target state="translated">Ошибка скачивания документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Вместить страницу</target>
|
<target state="translated">Вместить страницу</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка при выполнении операции редактирования PDF</target>
|
<target state="translated">Ошибка при выполнении операции редактирования PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Печать не удалась.</target>
|
<target state="translated">Печать не удалась.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ошибка загрузки документа для печати.</target>
|
<target state="translated">Ошибка загрузки документа для печати.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Произошла ошибка при загрузке tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Произошла ошибка при загрузке tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12770,7 +12774,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Одноразовая миграция настроек в базу данных завершена!</target>
|
<target state="translated">Одноразовая миграция настроек в базу данных завершена!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12778,7 +12782,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Не удается перенести настройки в базу данных, пожалуйста, попробуйте сохранить вручную.</target>
|
<target state="translated">Не удается перенести настройки в базу данных, пожалуйста, попробуйте сохранить вручную.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12786,7 +12790,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Вы можете перезапустить тур со страницы настроек.</target>
|
<target state="translated">Вы можете перезапустить тур со страницы настроек.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Predvolené povolenia</target>
|
<target state="translated">Predvolené povolenia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vymazať</target>
|
<target state="translated">Vymazať</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Áno</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrovať podľa vlastníka</target>
|
<target state="translated">Filtrovať podľa vlastníka</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Áno</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Zadajte Heslo</target>
|
<target state="translated">Zadajte Heslo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Chyba pri získavaní metadát</target>
|
<target state="translated">Chyba pri získavaní metadát</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vyskytla sa chyba počas nahrávania obsahu: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Vyskytla sa chyba počas nahrávania obsahu: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Chyba pri získavaní odporúčaní.</target>
|
<target state="translated">Chyba pri získavaní odporúčaní.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Chyba pri ukladaní dokumentu</target>
|
<target state="translated">Chyba pri ukladaní dokumentu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error deleting document</target>
|
<target state="needs-translation">Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Migrácia nastavení do databázy úspešne ukončená!</target>
|
<target state="translated">Migrácia nastavení do databázy úspešne ukončená!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nie je možné migrovať nastavenia do databázy, skúste uložiť manuálne.</target>
|
<target state="translated">Nie je možné migrovať nastavenia do databázy, skúste uložiť manuálne.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sprievodcu môžete znova spustiť z nastavení.</target>
|
<target state="translated">Sprievodcu môžete znova spustiť z nastavení.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Urejevalnik PDF</target>
|
<target state="translated">Urejevalnik PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Privzeta dovoljenja</target>
|
<target state="translated">Privzeta dovoljenja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Nastavitve veljajo za ta uporabniški račun za objekte (oznake, pravila za pošto itd., ne pa za dokumente), ustvarjene prek spletnega uporabniškega vmesnika. </target>
|
<target state="translated"> Nastavitve veljajo za ta uporabniški račun za objekte (oznake, pravila za pošto itd.), ustvarjene prek spletnega uporabniškega vmesnika. Te nastavitve ne veljajo za dokumente. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2076,7 +2076,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
|
||||||
<context context-type="linenumber">96</context>
|
<context context-type="linenumber">96</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Search tasks</target>
|
<target state="translated">Iskanje nalog</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6849725902312323996" datatype="html">
|
<trans-unit id="6849725902312323996" datatype="html">
|
||||||
<source>Reset filters</source>
|
<source>Reset filters</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -2704,7 +2704,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.ts</context>
|
||||||
<context context-type="linenumber">349</context>
|
<context context-type="linenumber">349</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Dismiss all <x id="PH" equiv-text="this.totalTasks()"/> tasks?</target>
|
<target state="translated">Opustim vse naloge <x id="PH" equiv-text="this.totalTasks()"/>?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8149502458056418229" datatype="html">
|
<trans-unit id="8149502458056418229" datatype="html">
|
||||||
<source>Success. New document id <x id="PH" equiv-text="documentId"/> created</source>
|
<source>Success. New document id <x id="PH" equiv-text="documentId"/> created</source>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Počisti</target>
|
<target state="translated">Počisti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Da</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Odstranite zaščito z geslom</target>
|
<target state="translated">Odstranite zaščito z geslom</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ustvarite nezaščiteno kopijo ali zamenjajte obstoječo datoteko.</target>
|
<target state="translated">Ustvarite nezaščiteno kopijo ali zamenjajte obstoječo datoteko.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Začni</target>
|
<target state="translated">Začni</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri nalaganju predogleda</target>
|
<target state="translated">Napaka pri nalaganju predogleda</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Odpri predogled</target>
|
<target state="translated">Odpri predogled</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7362,7 +7378,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html</context>
|
||||||
<context context-type="linenumber">22</context>
|
<context context-type="linenumber">22</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">+ <x id="INTERPOLATION" equiv-text="{{ selectionCount() - documentPreview().length }}"/> more…</target>
|
<target state="translated">+ <x id="INTERPOLATION" equiv-text="{{ selectionCount() - documentPreview().length }}"/> več…</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8037476586059399916" datatype="html">
|
<trans-unit id="8037476586059399916" datatype="html">
|
||||||
<source>Expires</source>
|
<source>Expires</source>
|
||||||
@@ -7462,7 +7478,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/share-link-bundle-dialog/share-link-bundle-dialog.component.html</context>
|
||||||
<context context-type="linenumber">68</context>
|
<context context-type="linenumber">68</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Share link</target>
|
<target state="translated">Deli povezavo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2618101617221155143" datatype="html">
|
<trans-unit id="2618101617221155143" datatype="html">
|
||||||
<source>Copy link</source>
|
<source>Copy link</source>
|
||||||
@@ -7926,7 +7942,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/common/system-status-dialog/system-status-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/system-status-dialog/system-status-dialog.component.html</context>
|
||||||
<context context-type="linenumber">147</context>
|
<context context-type="linenumber">147</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Recent Task Activity <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="small text-muted fw-light">"/>(<x id="INTERPOLATION" equiv-text="{{status().tasks.summary.days}}"/> days)<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target state="translated">Nedavna aktivnost opravila <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="small text-muted fw-light">"/>(<x id="INTERPOLATION" equiv-text="{{status().tasks.summary.days}}"/> dni)<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3448462145758383019" datatype="html">
|
<trans-unit id="3448462145758383019" datatype="html">
|
||||||
<source>Total</source>
|
<source>Total</source>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtriraj po lastniku</target>
|
<target state="translated">Filtriraj po lastniku</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Da</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8412,7 +8416,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-asn/document-asn.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-asn/document-asn.component.html</context>
|
||||||
<context context-type="linenumber">1</context>
|
<context context-type="linenumber">1</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Searching document with asn <x id="INTERPOLATION" equiv-text="{{asn()}}"/></target>
|
<target state="translated">Iskanje dokumenta z asn <x id="INTERPOLATION" equiv-text="{{asn()}}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1407560924967345762" datatype="html">
|
<trans-unit id="1407560924967345762" datatype="html">
|
||||||
<source>Page</source>
|
<source>Page</source>
|
||||||
@@ -8436,7 +8440,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">7,8</context>
|
<context context-type="linenumber">7,8</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">of <x id="INTERPOLATION" equiv-text="{{previewNumPages()}}"/></target>
|
<target state="translated">od <x id="INTERPOLATION" equiv-text="{{previewNumPages()}}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8590109102084543521" datatype="html">
|
<trans-unit id="8590109102084543521" datatype="html">
|
||||||
<source>-</source>
|
<source>-</source>
|
||||||
@@ -8656,7 +8660,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">318</context>
|
<context context-type="linenumber">318</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Original SHA256 checksum</target>
|
<target state="translated">Izvirna kontrolna vsota SHA256</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5888243105821763422" datatype="html">
|
<trans-unit id="5888243105821763422" datatype="html">
|
||||||
<source>Original file size</source>
|
<source>Original file size</source>
|
||||||
@@ -8680,7 +8684,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">331</context>
|
<context context-type="linenumber">331</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Archive SHA256 checksum</target>
|
<target state="translated">Arhivska kontrolna vsota SHA256</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6033581412811562084" datatype="html">
|
<trans-unit id="6033581412811562084" datatype="html">
|
||||||
<source>Archive file size</source>
|
<source>Archive file size</source>
|
||||||
@@ -8712,7 +8716,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">368,371</context>
|
<context context-type="linenumber">368,371</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Notes <x id="START_BLOCK_IF" equiv-text="@if (document()?.notes.length) {"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge text-bg-secondary ms-1">"/><x id="INTERPOLATION" equiv-text="length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></target>
|
<target state="translated">Opombe <x id="START_BLOCK_IF" equiv-text="@if (document()?.notes.length) {"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge text-bg-secondary ms-1">"/><x id="INTERPOLATION" equiv-text="length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="186236568870281953" datatype="html">
|
<trans-unit id="186236568870281953" datatype="html">
|
||||||
<source>History</source>
|
<source>History</source>
|
||||||
@@ -8728,7 +8732,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">401,405</context>
|
<context context-type="linenumber">401,405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Duplicates <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge text-bg-secondary ms-1">"/><x id="INTERPOLATION" equiv-text="cate_documents.length }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span"/></target>
|
<target state="translated"> Dvojniki <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="badge text-bg-secondary ms-1">"/><x id="INTERPOLATION" equiv-text="cate_documents.length }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6449374629822973702" datatype="html">
|
<trans-unit id="6449374629822973702" datatype="html">
|
||||||
<source>Duplicate documents detected:</source>
|
<source>Duplicate documents detected:</source>
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Vnesi geslo</target>
|
<target state="translated">Vnesi geslo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri pridobivanju metapodatkov</target>
|
<target state="translated">Napaka pri pridobivanju metapodatkov</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri nalaganju vsebine: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Napaka pri nalaganju vsebine: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je bil posodobljen</target>
|
<target state="translated">Dokument je bil posodobljen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je bil posodobljen ob <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokument je bil posodobljen ob <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ponovno naloži, da zavržeš lokalne neshranjene spremembe in naložiš najnovejšo oddaljeno različico.</target>
|
<target state="translated">Ponovno naloži, da zavržeš lokalne neshranjene spremembe in naložiš najnovejšo oddaljeno različico.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ponovno naloži</target>
|
<target state="translated">Ponovno naloži</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je bil ponovno naložen z najnovejšimi spremembami.</target>
|
<target state="translated">Dokument je bil ponovno naložen z najnovejšimi spremembami.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je bil ponovno naložen.</target>
|
<target state="translated">Dokument je bil ponovno naložen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Naslednji dokument</target>
|
<target state="translated">Naslednji dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Prejšnji dokument</target>
|
<target state="translated">Prejšnji dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Shrani dokument</target>
|
<target state="translated">Shrani dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Shrani in zapri / naprej</target>
|
<target state="translated">Shrani in zapri / naprej</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri pridobivanju vsebine različice</target>
|
<target state="translated">Napaka pri pridobivanju vsebine različice</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri pridobivanju priporočil.</target>
|
<target state="translated">Napaka pri pridobivanju priporočil.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" je bil uspešno shranjen.</target>
|
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" je bil uspešno shranjen.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,15 +8934,15 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="translated">Napaka pri shranjevanju dokumenta "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="448882439049417053" datatype="html">
|
<trans-unit id="448882439049417053" datatype="html">
|
||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri shranjevanju dokumenta</target>
|
<target state="translated">Napaka pri shranjevanju dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,15 +8950,15 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="translated">Ali res želite premakniti dokument "<x id="PH" equiv-text="this.document().title"/>" v koš?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="282586936710748252" datatype="html">
|
<trans-unit id="282586936710748252" datatype="html">
|
||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri brisanju dokumenta</target>
|
<target state="translated">Napaka pri brisanju dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">To dejanje bo dokončno poustvarilo arhivsko datoteko za izbran dokument.</target>
|
<target state="translated">To dejanje bo dokončno poustvarilo arhivsko datoteko za izbran dokument.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Arhivska datoteka bo poustvarjena s trenutnimi nastavitvami.</target>
|
<target state="translated">Arhivska datoteka bo poustvarjena s trenutnimi nastavitvami.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,15 +9006,15 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="translated">V ozadju se bo začel postopek ponovne obdelave za "<x id="PH" equiv-text="this.document().title"/>".</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4409560272830824468" datatype="html">
|
<trans-unit id="4409560272830824468" datatype="html">
|
||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri izvajanju operacije</target>
|
<target state="translated">Napaka pri izvajanju operacije</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri prenosu dokumenta</target>
|
<target state="translated">Napaka pri prenosu dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Prileganje strani</target>
|
<target state="translated">Prileganje strani</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,15 +9038,15 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="translated">Urejanje PDF-ja za "<x id="PH" equiv-text="this.document().title"/>" se bo začelo v ozadju.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="9043972994040261999" datatype="html">
|
<trans-unit id="9043972994040261999" datatype="html">
|
||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri urejanju PDF</target>
|
<target state="translated">Napaka pri urejanju PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Preden poskusite odstraniti geslo, ga vnesite.</target>
|
<target state="translated">Preden poskusite odstraniti geslo, ga vnesite.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,15 +9062,15 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="translated">Operacija odstranitve gesla za "<x id="PH" equiv-text="this.document().title"/>" se bo začela v ozadju.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2282118435712883014" datatype="html">
|
<trans-unit id="2282118435712883014" datatype="html">
|
||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri izvajanju odstranitve gesla</target>
|
<target state="translated">Napaka pri izvajanju odstranitve gesla</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Tiskanje ni uspelo.</target>
|
<target state="translated">Tiskanje ni uspelo.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napaka pri nalaganju dokumenta za tiskanje.</target>
|
<target state="translated">Napaka pri nalaganju dokumenta za tiskanje.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pri nalaganju datoteke tiff je prišlo do napake: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Pri nalaganju datoteke tiff je prišlo do napake: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9716,7 +9720,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">8</context>
|
<context context-type="linenumber">8</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> thumbnail</target>
|
<target state="translated"><x id="INTERPOLATION" equiv-text="document().title | documentTitle }}"/> sličica</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2784168796433474565" datatype="html">
|
<trans-unit id="2784168796433474565" datatype="html">
|
||||||
<source>Filter by tag</source>
|
<source>Filter by tag</source>
|
||||||
@@ -9752,7 +9756,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">95,96</context>
|
<context context-type="linenumber">95,96</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Created: <x id="INTERPOLATION" equiv-text="{{ document().created | customDate }}"/></target>
|
<target state="translated">Ustvarjeno: <x id="INTERPOLATION" equiv-text="{{ document().created | customDate }}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2030261243264601523" datatype="html">
|
<trans-unit id="2030261243264601523" datatype="html">
|
||||||
<source>Added: <x id="INTERPOLATION" equiv-text="{{ document().added | customDate }}"/></source>
|
<source>Added: <x id="INTERPOLATION" equiv-text="{{ document().added | customDate }}"/></source>
|
||||||
@@ -9768,7 +9772,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">96,97</context>
|
<context context-type="linenumber">96,97</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Added: <x id="INTERPOLATION" equiv-text="{{ document().added | customDate }}"/></target>
|
<target state="translated">Dodano: <x id="INTERPOLATION" equiv-text="{{ document().added | customDate }}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4235671847487610290" datatype="html">
|
<trans-unit id="4235671847487610290" datatype="html">
|
||||||
<source>Modified: <x id="INTERPOLATION" equiv-text="{{ document().modified | customDate }}"/></source>
|
<source>Modified: <x id="INTERPOLATION" equiv-text="{{ document().modified | customDate }}"/></source>
|
||||||
@@ -9784,7 +9788,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-list/document-card-small/document-card-small.component.html</context>
|
||||||
<context context-type="linenumber">97,98</context>
|
<context context-type="linenumber">97,98</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Modified: <x id="INTERPOLATION" equiv-text="{{ document().modified | customDate }}"/></target>
|
<target state="translated">Spremenjeno: <x id="INTERPOLATION" equiv-text="{{ document().modified | customDate }}"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="197162226430950645" datatype="html">
|
<trans-unit id="197162226430950645" datatype="html">
|
||||||
<source>{VAR_PLURAL, plural, =1 {1 page} other {<x id="INTERPOLATION"/> pages}}</source>
|
<source>{VAR_PLURAL, plural, =1 {1 page} other {<x id="INTERPOLATION"/> pages}}</source>
|
||||||
@@ -11308,7 +11312,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
||||||
<context context-type="linenumber">2</context>
|
<context context-type="linenumber">2</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Processed Mail for <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/><x id="INTERPOLATION" equiv-text="{{ rule().name }}"/><x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/></target>
|
<target state="translated">Obdelana pošta za <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/><x id="INTERPOLATION" equiv-text="{{ rule().name }}"/><x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1991019495862291373" datatype="html">
|
<trans-unit id="1991019495862291373" datatype="html">
|
||||||
<source>No processed email messages found.</source>
|
<source>No processed email messages found.</source>
|
||||||
@@ -11324,7 +11328,7 @@
|
|||||||
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
<context context-type="sourcefile">src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html</context>
|
||||||
<context context-type="linenumber">29</context>
|
<context context-type="linenumber">29</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Select all processed email messages</target>
|
<target state="translated">Izberi vsa obdelana e-poštna sporočila</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8691920320483720007" datatype="html">
|
<trans-unit id="8691920320483720007" datatype="html">
|
||||||
<source>Received</source>
|
<source>Received</source>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Uspešno opravljena enkratna migracija nastavitev v bazo!</target>
|
<target state="translated">Uspešno opravljena enkratna migracija nastavitev v bazo!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nastavitev ni mogoče preseliti v bazo podatkov, poskusite jih shraniti ročno.</target>
|
<target state="translated">Nastavitev ni mogoče preseliti v bazo podatkov, poskusite jih shraniti ročno.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ogled lahko ponovite v nastavitvah.</target>
|
<target state="translated">Ogled lahko ponovite v nastavitvah.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1399,7 +1399,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF Editor</target>
|
<target state="translated">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1523,13 +1523,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Default Permissions</target>
|
<target state="translated">[SQ] Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2359,7 +2359,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3339,11 +3339,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3959,6 +3959,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Clear</target>
|
<target state="translated">[SQ] Clear</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">[SQ] Yes</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3987,7 +4003,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4111,7 +4127,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Remove password protection</target>
|
<target state="translated">[SQ] Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4123,7 +4139,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Create an unprotected copy or replace the existing file.</target>
|
<target state="translated">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4135,7 +4151,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Start</target>
|
<target state="translated">[SQ] Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6259,7 +6275,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7057,7 +7073,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error loading preview</target>
|
<target state="translated">[SQ] Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7065,7 +7081,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Open preview</target>
|
<target state="translated">[SQ] Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8201,18 +8217,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Filter by owner</target>
|
<target state="translated">[SQ] Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">[SQ] Yes</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8783,7 +8787,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Enter Password</target>
|
<target state="translated">Enter Password</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8791,7 +8795,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error retrieving metadata</target>
|
<target state="translated">[SQ] Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8799,11 +8803,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">[SQ] An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8811,7 +8815,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document was updated</target>
|
<target state="translated">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8819,7 +8823,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8827,7 +8831,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="translated">[SQ] Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8835,7 +8839,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Reload</target>
|
<target state="translated">[SQ] Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8843,7 +8847,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document reloaded with latest changes.</target>
|
<target state="translated">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8851,7 +8855,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document reloaded.</target>
|
<target state="translated">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8859,7 +8863,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Next document</target>
|
<target state="translated">[SQ] Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8867,7 +8871,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Previous document</target>
|
<target state="translated">[SQ] Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8875,7 +8879,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8887,7 +8891,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Save document</target>
|
<target state="translated">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8895,7 +8899,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Save and close / next</target>
|
<target state="translated">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8903,7 +8907,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error retrieving version content</target>
|
<target state="translated">[SQ] Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8911,7 +8915,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error retrieving suggestions.</target>
|
<target state="translated">[SQ] Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8919,11 +8923,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="translated">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8931,7 +8935,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8939,7 +8943,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error saving document</target>
|
<target state="translated">[SQ] Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8947,7 +8951,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8955,7 +8959,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8967,7 +8971,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error deleting document</target>
|
<target state="translated">[SQ] Error deleting document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8975,7 +8979,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8987,7 +8991,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] This operation will permanently recreate the archive file for this document.</target>
|
<target state="translated">[SQ] This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8995,7 +8999,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] The archive file will be re-generated with the current settings.</target>
|
<target state="translated">[SQ] The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9003,7 +9007,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9011,7 +9015,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error executing operation</target>
|
<target state="translated">[SQ] Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9019,7 +9023,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error downloading document</target>
|
<target state="translated">[SQ] Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9027,7 +9031,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Page Fit</target>
|
<target state="translated">[SQ] Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9035,7 +9039,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9043,7 +9047,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error executing PDF edit operation</target>
|
<target state="translated">[SQ] Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9051,7 +9055,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Please enter the current password before attempting to remove it.</target>
|
<target state="translated">[SQ] Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9059,7 +9063,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9067,7 +9071,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error executing password removal operation</target>
|
<target state="translated">[SQ] Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9075,7 +9079,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Print failed.</target>
|
<target state="translated">[SQ] Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9083,7 +9087,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Error loading document for printing.</target>
|
<target state="translated">[SQ] Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9091,11 +9095,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">[SQ] An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12772,7 +12776,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Successfully completed one-time migratration of settings to the database!</target>
|
<target state="translated">[SQ] Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12780,7 +12784,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="translated">[SQ] Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12788,7 +12792,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">[SQ] You can restart the tour from the settings page.</target>
|
<target state="translated">[SQ] You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF uređivač</target>
|
<target state="translated">PDF uređivač</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Podrazumevane dozvole</target>
|
<target state="translated">Podrazumevane dozvole</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Podešavanja se primenjuju na ovaj korisnički nalog za objekte (oznake, pravila za poštu i slično, ali ne i za dokumente) kreirane putem veb interfejsa. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Očisti</target>
|
<target state="translated">Očisti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Da</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Uklonite zaštitu lozinkom</target>
|
<target state="translated">Uklonite zaštitu lozinkom</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Napravite nezaštićenu kopiju ili zamenite postojeću datoteku.</target>
|
<target state="translated">Napravite nezaštićenu kopiju ili zamenite postojeću datoteku.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Pokrеni</target>
|
<target state="translated">Pokrеni</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška prilikom učitavanja pregleda</target>
|
<target state="translated">Greška prilikom učitavanja pregleda</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Otvori pregled</target>
|
<target state="translated">Otvori pregled</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtriraj po vlasniku</target>
|
<target state="translated">Filtriraj po vlasniku</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Da</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Unesite lozinku</target>
|
<target state="translated">Unesite lozinku</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri preuzimanju metapodataka</target>
|
<target state="translated">Greška pri preuzimanju metapodataka</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greške se pojavila prilikom učitavanja sadržaja: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Greške se pojavila prilikom učitavanja sadržaja: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je ažuriran</target>
|
<target state="translated">Dokument je ažuriran</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je ažuriran u <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="translated">Dokument je ažuriran u <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ponovo učitajte da biste odbacili lokalne nesačuvane izmene i učitali najnoviju udaljenu verziju.</target>
|
<target state="translated">Ponovo učitajte da biste odbacili lokalne nesačuvane izmene i učitali najnoviju udaljenu verziju.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Osveži</target>
|
<target state="translated">Osveži</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je ponovo učitan sa najnovijim izmenama.</target>
|
<target state="translated">Dokument je ponovo učitan sa najnovijim izmenama.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument je ponovo učitan.</target>
|
<target state="translated">Dokument je ponovo učitan.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sledeći dokument</target>
|
<target state="translated">Sledeći dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Prethodni dokument</target>
|
<target state="translated">Prethodni dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sačuvaj dokument</target>
|
<target state="translated">Sačuvaj dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sačuvaj i zatvori / sledeće</target>
|
<target state="translated">Sačuvaj i zatvori / sledeće</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri preuzimanju sadržaja verzije</target>
|
<target state="translated">Greška pri preuzimanju sadržaja verzije</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri preuzimanju predloga.</target>
|
<target state="translated">Greška pri preuzimanju predloga.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" je sačuvan uspešno.</target>
|
<target state="translated">Dokument "<x id="PH" equiv-text="newValues.title"/>" je sačuvan uspešno.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška prilikom čuvanja dokumenta</target>
|
<target state="translated">Greška prilikom čuvanja dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška prilikom brisanja dokumenta</target>
|
<target state="translated">Greška prilikom brisanja dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ova akcija će trajno ponovo kreirati arhivski fajl za ovaj dokument.</target>
|
<target state="translated">Ova akcija će trajno ponovo kreirati arhivski fajl za ovaj dokument.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Arhivski fajl će biti ponovo generisan sa trenutnim podešavanjima.</target>
|
<target state="translated">Arhivski fajl će biti ponovo generisan sa trenutnim podešavanjima.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška prilikom izvršavanja operacije</target>
|
<target state="translated">Greška prilikom izvršavanja operacije</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška prilikom preuzimanja dokumenta</target>
|
<target state="translated">Greška prilikom preuzimanja dokumenta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Prilagodi stranicu</target>
|
<target state="translated">Prilagodi stranicu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri izvršavanju operacije uređivanja PDF-a</target>
|
<target state="translated">Greška pri izvršavanju operacije uređivanja PDF-a</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Molimo vas da unesete trenutnu lozinku pre nego što pokušate da je uklonite.</target>
|
<target state="translated">Molimo vas da unesete trenutnu lozinku pre nego što pokušate da je uklonite.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri izvršavanju operacije uklanjanja lozinke</target>
|
<target state="translated">Greška pri izvršavanju operacije uklanjanja lozinke</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Štampanje nije uspelo.</target>
|
<target state="translated">Štampanje nije uspelo.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Greška pri učitavanju dokumenta za štampanje.</target>
|
<target state="translated">Greška pri učitavanju dokumenta za štampanje.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Došlo je do greške prilikom učitavanja TIFF-a: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">Došlo je do greške prilikom učitavanja TIFF-a: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12772,7 +12776,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Uspešno završena jednokratna migracija podešavanja u bazu podataka!</target>
|
<target state="translated">Uspešno završena jednokratna migracija podešavanja u bazu podataka!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12780,7 +12784,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nije moguće preneti podešavanja u bazu podataka, pokušajte da ih sačuvate ručno.</target>
|
<target state="translated">Nije moguće preneti podešavanja u bazu podataka, pokušajte da ih sačuvate ručno.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12788,7 +12792,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Možete ponovo da pokrenete obilazak sa stranice sa podešavanjima.</target>
|
<target state="translated">Možete ponovo da pokrenete obilazak sa stranice sa podešavanjima.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF-redigerare</target>
|
<target state="translated">PDF-redigerare</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Standardbehörigheter</target>
|
<target state="translated">Standardbehörigheter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Rensa</target>
|
<target state="final">Rensa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Ja</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ta bort lösenordsskydd</target>
|
<target state="translated">Ta bort lösenordsskydd</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Start</target>
|
<target state="translated">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid inläsning av förhandsgranskning</target>
|
<target state="translated">Fel vid inläsning av förhandsgranskning</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Öppna förhandsvisning</target>
|
<target state="translated">Öppna förhandsvisning</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Filtrera efter ägare</target>
|
<target state="translated">Filtrera efter ägare</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Ja</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ange lösenord</target>
|
<target state="translated">Ange lösenord</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid hämtning av metadata</target>
|
<target state="translated">Fel vid hämtning av metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ett fel uppstod när innehållet laddades: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Ett fel uppstod när innehållet laddades: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument uppdaterades</target>
|
<target state="translated">Dokument uppdaterades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ladda om</target>
|
<target state="translated">Ladda om</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument laddat om med senaste ändringarna.</target>
|
<target state="translated">Dokument laddat om med senaste ändringarna.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Dokument laddat om.</target>
|
<target state="translated">Dokument laddat om.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Nästa dokument</target>
|
<target state="translated">Nästa dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Föregående dokument</target>
|
<target state="translated">Föregående dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Spara dokument</target>
|
<target state="translated">Spara dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Spara och stäng / nästa</target>
|
<target state="translated">Spara och stäng / nästa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid hämtning av versionsinnehåll</target>
|
<target state="translated">Fel vid hämtning av versionsinnehåll</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid hämtning av förslag.</target>
|
<target state="translated">Fel vid hämtning av förslag.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kunde inte spara dokumentet</target>
|
<target state="translated">Kunde inte spara dokumentet</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid borttagning av dokument</target>
|
<target state="translated">Fel vid borttagning av dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid hämtning av dokument</target>
|
<target state="translated">Fel vid hämtning av dokument</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Utskrift misslyckades.</target>
|
<target state="translated">Utskrift misslyckades.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Fel vid inläsning av dokument för utskrift.</target>
|
<target state="translated">Fel vid inläsning av dokument för utskrift.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Slutförde engångsmigreringen av inställningarna till databasen!</target>
|
<target state="translated">Slutförde engångsmigreringen av inställningarna till databasen!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kunde inte migrera inställningarna till databasen, försök spara manuellt.</target>
|
<target state="translated">Kunde inte migrera inställningarna till databasen, försök spara manuellt.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Du kan starta om rundturen från inställningssidan.</target>
|
<target state="translated">Du kan starta om rundturen från inställningssidan.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Default Permissions</target>
|
<target state="needs-translation">Default Permissions</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">ล้าง</target>
|
<target state="translated">ล้าง</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">ใช่</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading preview</target>
|
<target state="needs-translation">Error loading preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Open preview</target>
|
<target state="needs-translation">Open preview</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Filter by owner</target>
|
<target state="needs-translation">Filter by owner</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">ใช่</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">กรอกรหัสผ่าน</target>
|
<target state="translated">กรอกรหัสผ่าน</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving metadata</target>
|
<target state="needs-translation">Error retrieving metadata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Next document</target>
|
<target state="needs-translation">Next document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Previous document</target>
|
<target state="needs-translation">Previous document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save document</target>
|
<target state="needs-translation">Save document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Save and close / next</target>
|
<target state="needs-translation">Save and close / next</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving suggestions.</target>
|
<target state="needs-translation">Error retrieving suggestions.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document</target>
|
<target state="needs-translation">Error saving document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">เกิดข้อผิดพลาดในการลบเอกสาร</target>
|
<target state="translated">เกิดข้อผิดพลาดในการลบเอกสาร</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
<target state="needs-translation">This operation will permanently recreate the archive file for this document.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
<target state="needs-translation">The archive file will be re-generated with the current settings.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing operation</target>
|
<target state="needs-translation">Error executing operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error downloading document</target>
|
<target state="needs-translation">Error downloading document</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Page Fit</target>
|
<target state="needs-translation">Page Fit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
<target state="needs-translation">Successfully completed one-time migratration of settings to the database!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
<target state="needs-translation">Unable to migrate settings to the database, please try saving manually.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
<target state="needs-translation">You can restart the tour from the settings page.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF Düzenleyici</target>
|
<target state="translated">PDF Düzenleyici</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Varsayılan İzinler</target>
|
<target state="translated">Varsayılan İzinler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> Ayarlar, web kullanıcı arayüzü üzerinden oluşturulan nesneler (Etiketler, Posta Kuralları vb., ancak belgeler hariç) bu kullanıcı hesabına uygulanır </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Temizle</target>
|
<target state="translated">Temizle</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Evet</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6260,7 +6276,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7058,7 +7074,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ön izleme yüklenirken hata</target>
|
<target state="translated">Ön izleme yüklenirken hata</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7066,7 +7082,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ön izlemeyi aç</target>
|
<target state="translated">Ön izlemeyi aç</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8202,18 +8218,6 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sahibine göre filtrele</target>
|
<target state="translated">Sahibine göre filtrele</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Evet</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8784,7 +8788,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Parolayı girin</target>
|
<target state="translated">Parolayı girin</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8792,7 +8796,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Metaveri alınırken bir hata meydana geldi</target>
|
<target state="translated">Metaveri alınırken bir hata meydana geldi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8800,11 +8804,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>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">İçerik yüklenirken bir hata ile karşılaşıldı: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">İçerik yüklenirken bir hata ile karşılaşıldı: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8812,7 +8816,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8820,7 +8824,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>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8828,7 +8832,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>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8836,7 +8840,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8844,7 +8848,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8852,7 +8856,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8860,7 +8864,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sonraki belge</target>
|
<target state="translated">Sonraki belge</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8868,7 +8872,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Önceki belge</target>
|
<target state="translated">Önceki belge</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8876,7 +8880,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8888,7 +8892,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Belgeyi kaydet</target>
|
<target state="translated">Belgeyi kaydet</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8896,7 +8900,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Kaydet, kapat ve bir sonrakine geç</target>
|
<target state="translated">Kaydet, kapat ve bir sonrakine geç</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8904,7 +8908,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8912,7 +8916,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Öneriler getirilirken bir hata meydana geldi.</target>
|
<target state="translated">Öneriler getirilirken bir hata meydana geldi.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8920,11 +8924,11 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">"<x id="PH" equiv-text="newValues.title"/>" belgesi başarıyla kaydedildi.</target>
|
<target state="translated">"<x id="PH" equiv-text="newValues.title"/>" belgesi başarıyla kaydedildi.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8932,7 +8936,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8940,7 +8944,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Belge kaydedilirken bir hata ile karşılaşıldı</target>
|
<target state="translated">Belge kaydedilirken bir hata ile karşılaşıldı</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8948,7 +8952,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8956,7 +8960,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8968,7 +8972,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Belge silinirken bir hata meydana geldi</target>
|
<target state="translated">Belge silinirken bir hata meydana geldi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8976,7 +8980,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8988,7 +8992,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Bu işlem, bu belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.</target>
|
<target state="translated">Bu işlem, bu belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8996,7 +9000,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Arşiv dosyası mevcut ayarlarla yeniden oluşturulacaktır.</target>
|
<target state="translated">Arşiv dosyası mevcut ayarlarla yeniden oluşturulacaktır.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9004,7 +9008,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9012,7 +9016,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">İşlemi gerçekleştirirken bir hata ile karşılaşıldı</target>
|
<target state="translated">İşlemi gerçekleştirirken bir hata ile karşılaşıldı</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9020,7 +9024,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Belge indirilirken bir hata meydana geldi</target>
|
<target state="translated">Belge indirilirken bir hata meydana geldi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9028,7 +9032,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Sayfa Sığdır</target>
|
<target state="translated">Sayfa Sığdır</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9036,7 +9040,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9044,7 +9048,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF düzenleme işlemleri uygulanırken bir hata ile karşılaşıldı</target>
|
<target state="translated">PDF düzenleme işlemleri uygulanırken bir hata ile karşılaşıldı</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9052,7 +9056,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9060,7 +9064,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9068,7 +9072,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9076,7 +9080,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Yazdırma başarısız oldu.</target>
|
<target state="translated">Yazdırma başarısız oldu.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9084,7 +9088,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Belgeyi yazdırmaya hazırlarken bir hata ile karşılaşıldı.</target>
|
<target state="translated">Belgeyi yazdırmaya hazırlarken bir hata ile karşılaşıldı.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9092,11 +9096,11 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"><x id="PH" equiv-text="err.toString()"/> tiff'i yüklenirken bir hata meydana geldi</target>
|
<target state="translated"><x id="PH" equiv-text="err.toString()"/> tiff'i yüklenirken bir hata meydana geldi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12772,7 +12776,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ayarların veritabanına tek seferlik taşıma işlemi başarıyla tamamlandı!</target>
|
<target state="translated">Ayarların veritabanına tek seferlik taşıma işlemi başarıyla tamamlandı!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12780,7 +12784,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ayarları veritabanına taşıyamıyoruz, lütfen manuel olarak kaydetmeyi deneyin.</target>
|
<target state="translated">Ayarları veritabanına taşıyamıyoruz, lütfen manuel olarak kaydetmeyi deneyin.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12788,7 +12792,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> krite
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ayarlar sayfasından turu yeniden başlatabilirsiniz.</target>
|
<target state="translated">Ayarlar sayfasından turu yeniden başlatabilirsiniz.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF Editor</target>
|
<target state="needs-translation">PDF Editor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Типові дозволи</target>
|
<target state="translated">Типові дозволи</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Очистити</target>
|
<target state="translated">Очистити</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">Так</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка при завантаженні попереднього перегляду</target>
|
<target state="translated">Помилка при завантаженні попереднього перегляду</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Відкрити попередній перегляд</target>
|
<target state="translated">Відкрити попередній перегляд</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Фільтрувати за власником</target>
|
<target state="translated">Фільтрувати за власником</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">Так</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Введіть пароль</target>
|
<target state="translated">Введіть пароль</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка отримання метаданих</target>
|
<target state="translated">Помилка отримання метаданих</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Під час завантаження вмісту сталася помилка: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">Під час завантаження вмісту сталася помилка: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Наступний документ</target>
|
<target state="translated">Наступний документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Попередній документ</target>
|
<target state="translated">Попередній документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Зберегти документ</target>
|
<target state="translated">Зберегти документ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Зберегти й закрити / наступний</target>
|
<target state="translated">Зберегти й закрити / наступний</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка при отриманні пропозицій.</target>
|
<target state="translated">Помилка при отриманні пропозицій.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
<target state="needs-translation">Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка при збереженні документа</target>
|
<target state="translated">Помилка при збереженні документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка видалення документа</target>
|
<target state="translated">Помилка видалення документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ця операція остаточно відновить архівний файл цього документа.</target>
|
<target state="translated">Ця операція остаточно відновить архівний файл цього документа.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Файл архіву буде повторно створений з поточними налаштуваннями.</target>
|
<target state="translated">Файл архіву буде повторно створений з поточними налаштуваннями.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка виконання операції</target>
|
<target state="translated">Помилка виконання операції</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Помилка завантаження документа</target>
|
<target state="translated">Помилка завантаження документа</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Вмістити сторінку</target>
|
<target state="translated">Вмістити сторінку</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing PDF edit operation</target>
|
<target state="needs-translation">Error executing PDF edit operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Print failed.</target>
|
<target state="needs-translation">Print failed.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error loading document for printing.</target>
|
<target state="needs-translation">Error loading document for printing.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="needs-translation">An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Успішно завершено одноразову міграцію параметрів до бази даних!</target>
|
<target state="translated">Успішно завершено одноразову міграцію параметрів до бази даних!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Не вдається перенести налаштування в базу даних, спробуйте зберегти вручну.</target>
|
<target state="translated">Не вдається перенести налаштування в базу даних, спробуйте зберегти вручну.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">Ви можете пройти знайомство ще раз зі сторінки налаштувань.</target>
|
<target state="translated">Ви можете пройти знайомство ще раз зі сторінки налаштувань.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Trình chỉnh sửa PDF</target>
|
<target state="final">Trình chỉnh sửa PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,15 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Phân quyền mặc định</target>
|
<target state="final">Phân quyền mặc định</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html" approved="yes">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
Cài đặt áp dụng cho tài khoản người dùng này cho các đối tượng (thẻ, quy tắc thư, v.v. nhưng không phải tài liệu) được tạo thông qua giao diện người dùng web.
|
|
||||||
</target>
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html" approved="yes">
|
<trans-unit id="4292903881380648974" datatype="html" approved="yes">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2362,7 +2360,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3350,11 +3348,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3978,6 +3976,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Xóa bỏ</target>
|
<target state="final">Xóa bỏ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="final">Đúng</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html" approved="yes">
|
<trans-unit id="7515883357904500238" datatype="html" approved="yes">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -4006,7 +4020,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4130,7 +4144,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4142,7 +4156,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4154,7 +4168,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Start</target>
|
<target state="needs-translation">Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6288,7 +6302,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7092,7 +7106,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi tải Xem trước</target>
|
<target state="final">Lỗi tải Xem trước</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7100,7 +7114,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Mở bản xem trước</target>
|
<target state="final">Mở bản xem trước</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8248,18 +8262,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lọc theo chủ sở hữu</target>
|
<target state="final">Lọc theo chủ sở hữu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html" approved="yes">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="final">Đúng</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
<trans-unit id="3542042671420335679" datatype="html" approved="yes">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8834,7 +8836,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Nhập mật khẩu</target>
|
<target state="final">Nhập mật khẩu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8844,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi truy xuất siêu dữ liệu</target>
|
<target state="final">Lỗi truy xuất siêu dữ liệu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,11 +8852,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">
|
<target state="final">
|
||||||
Đã xảy ra lỗi Nội dung tải:
|
Đã xảy ra lỗi Nội dung tải:
|
||||||
@@ -8864,7 +8866,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8872,7 +8874,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8880,7 +8882,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8888,7 +8890,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8896,7 +8898,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8904,7 +8906,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8912,7 +8914,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Tài liệu sau</target>
|
<target state="final">Tài liệu sau</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8920,7 +8922,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Tài liệu trước</target>
|
<target state="final">Tài liệu trước</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8928,7 +8930,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8940,7 +8942,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lưu tài liệu</target>
|
<target state="final">Lưu tài liệu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8948,7 +8950,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lưu và đóng / tiếp theo</target>
|
<target state="final">Lưu và đóng / tiếp theo</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8956,7 +8958,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8964,7 +8966,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi khi lấy các gợi ý.</target>
|
<target state="final">Lỗi khi lấy các gợi ý.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8972,11 +8974,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">
|
<target state="final">
|
||||||
Tài liệu "" Đã lưu thành công.
|
Tài liệu "" Đã lưu thành công.
|
||||||
@@ -8986,7 +8988,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8996,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi khi lưu tài liệu</target>
|
<target state="final">Lỗi khi lưu tài liệu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9004,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9012,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -9022,7 +9024,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi khi xóa tài liệu.</target>
|
<target state="final">Lỗi khi xóa tài liệu.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9030,7 +9032,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -9042,7 +9044,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Thao tác này sẽ tạo lại vĩnh viễn tệp lưu trữ cho tài liệu này.</target>
|
<target state="final">Thao tác này sẽ tạo lại vĩnh viễn tệp lưu trữ cho tài liệu này.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9052,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Tệp lưu trữ sẽ được tạo lại với các cài đặt hiện tại.</target>
|
<target state="final">Tệp lưu trữ sẽ được tạo lại với các cài đặt hiện tại.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9060,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9068,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi thực hiện thao tác</target>
|
<target state="final">Lỗi thực hiện thao tác</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9076,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi khi tải xuống tài liệu</target>
|
<target state="final">Lỗi khi tải xuống tài liệu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9084,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Vừa khít trang</target>
|
<target state="final">Vừa khít trang</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,7 +9092,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9098,7 +9100,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi khi thực hiện chỉnh sửa PDF</target>
|
<target state="final">Lỗi khi thực hiện chỉnh sửa PDF</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9106,7 +9108,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9114,7 +9116,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9122,7 +9124,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9130,7 +9132,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">In ấn thất bại.</target>
|
<target state="final">In ấn thất bại.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9138,7 +9140,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">Lỗi khi tải tài liệu để in.</target>
|
<target state="final">Lỗi khi tải tài liệu để in.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9146,11 +9148,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">
|
<target state="final">
|
||||||
Đã xảy ra lỗi tải TIFF:
|
Đã xảy ra lỗi tải TIFF:
|
||||||
@@ -12907,7 +12909,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">quá trình cập nhật dữ liệu cấu hình</target>
|
<target state="final">quá trình cập nhật dữ liệu cấu hình</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12915,7 +12917,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">cập nhật dữ liệu cấu hình</target>
|
<target state="final">cập nhật dữ liệu cấu hình</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12923,7 +12925,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="final">khởi động lại hướng dẫn nhanh</target>
|
<target state="final">khởi động lại hướng dẫn nhanh</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF 编辑器</target>
|
<target state="translated">PDF 编辑器</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">默认权限</target>
|
<target state="translated">默认权限</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> 对于通过网页界面创建的对象 (标签、邮件规则等,但不包括文档),这些设置将应用于此用户帐户。 </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">清除</target>
|
<target state="translated">清除</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">是</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">删除密码保护</target>
|
<target state="translated">删除密码保护</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">创建一个不受保护的副本或替换现有文件。</target>
|
<target state="translated">创建一个不受保护的副本或替换现有文件。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">开始</target>
|
<target state="translated">开始</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">预览加载时发生错误</target>
|
<target state="translated">预览加载时发生错误</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">打开预览</target>
|
<target state="translated">打开预览</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">按所有者筛选</target>
|
<target state="translated">按所有者筛选</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">是</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">输入密码</target>
|
<target state="translated">输入密码</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">获取元数据时发生错误</target>
|
<target state="translated">获取元数据时发生错误</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">加载内容时发生错误: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">加载内容时发生错误: <x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">文档已更新</target>
|
<target state="translated">文档已更新</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">文档已于 <x id="PH" equiv-text="formattedModified"/> 更新。</target>
|
<target state="translated">文档已于 <x id="PH" equiv-text="formattedModified"/> 更新。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">重新加载以丢弃本地未保存的更改,并加载最新的远程版本。</target>
|
<target state="translated">重新加载以丢弃本地未保存的更改,并加载最新的远程版本。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">重新加载</target>
|
<target state="translated">重新加载</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">已重新加载文档,已应用最新更改。</target>
|
<target state="translated">已重新加载文档,已应用最新更改。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">文档已重新加载。</target>
|
<target state="translated">文档已重新加载。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">下一个文档</target>
|
<target state="translated">下一个文档</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">上一个文档</target>
|
<target state="translated">上一个文档</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">保存文档</target>
|
<target state="translated">保存文档</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">保存并关闭 / 下一个</target>
|
<target state="translated">保存并关闭 / 下一个</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">获取版本内容出错</target>
|
<target state="translated">获取版本内容出错</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">获取建议时发生错误。</target>
|
<target state="translated">获取建议时发生错误。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">文档 "<x id="PH" equiv-text="newValues.title"/>" 保存成功。</target>
|
<target state="translated">文档 "<x id="PH" equiv-text="newValues.title"/>" 保存成功。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">保存文档 <x id="PH" equiv-text="this.document().title"/> 时发生错误</target>
|
<target state="translated">保存文档 <x id="PH" equiv-text="this.document().title"/> 时发生错误</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">保存文档时发生错误</target>
|
<target state="translated">保存文档时发生错误</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">您真的要将文档 "<x id="PH" equiv-text="this.document().title"/>" 移动到回收站吗?</target>
|
<target state="translated">您真的要将文档 "<x id="PH" equiv-text="this.document().title"/>" 移动到回收站吗?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">删除文档时发生错误。</target>
|
<target state="translated">删除文档时发生错误。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">此操作将永久重新创建此文档的归档文件。</target>
|
<target state="translated">此操作将永久重新创建此文档的归档文件。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">归档文件将使用当前设置重新生成。</target>
|
<target state="translated">归档文件将使用当前设置重新生成。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">“<x id="PH" equiv-text="this.document().title"/>” 的重新处理操作将在后台开始。</target>
|
<target state="translated">“<x id="PH" equiv-text="this.document().title"/>” 的重新处理操作将在后台开始。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">执行操作时发生错误</target>
|
<target state="translated">执行操作时发生错误</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">下载文档时出错</target>
|
<target state="translated">下载文档时出错</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">适应页面</target>
|
<target state="translated">适应页面</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">对‘<x id="PH" equiv-text="this.document().title"/>’的 PDF 编辑操作将在后台开始。</target>
|
<target state="translated">对‘<x id="PH" equiv-text="this.document().title"/>’的 PDF 编辑操作将在后台开始。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">执行 PDF 编辑操作出错</target>
|
<target state="translated">执行 PDF 编辑操作出错</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">请在试图删除之前输入当前密码。</target>
|
<target state="translated">请在试图删除之前输入当前密码。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">"<x id="PH" equiv-text="this.document().title"/>" 的密码删除操作将在后台开始。</target>
|
<target state="translated">"<x id="PH" equiv-text="this.document().title"/>" 的密码删除操作将在后台开始。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">执行密码删除操作时出错</target>
|
<target state="translated">执行密码删除操作时出错</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">打印失败。</target>
|
<target state="translated">打印失败。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">加载打印文档时出错。</target>
|
<target state="translated">加载打印文档时出错。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">加载内容时发生错误: <x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">加载内容时发生错误: <x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">成功完成设置一次性迁移到数据库!</target>
|
<target state="translated">成功完成设置一次性迁移到数据库!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">无法将设置迁移到数据库,请尝试手动保存。</target>
|
<target state="translated">无法将设置迁移到数据库,请尝试手动保存。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">你可以从设置页面重新开始导览。</target>
|
<target state="translated">你可以从设置页面重新开始导览。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -1398,7 +1398,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1787</context>
|
<context context-type="linenumber">1791</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">PDF 編輯器</target>
|
<target state="translated">PDF 編輯器</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -1522,13 +1522,13 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">預設權限</target>
|
<target state="translated">預設權限</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6544153565064275581" datatype="html">
|
<trans-unit id="1267490156259885391" datatype="html">
|
||||||
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. </source>
|
<source> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
<context context-type="sourcefile">src/app/components/admin/settings/settings.component.html</context>
|
||||||
<context context-type="linenumber">306,308</context>
|
<context context-type="linenumber">306,308</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated"> 此設定將套用至該使用者帳號,適用於透過網頁介面建立的項目(標籤、郵件規則等,但不包含文件)。 </target>
|
<target state="needs-translation"> Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI. These settings do not apply to documents. </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4292903881380648974" datatype="html">
|
<trans-unit id="4292903881380648974" datatype="html">
|
||||||
<source>Default Owner</source>
|
<source>Default Owner</source>
|
||||||
@@ -2358,7 +2358,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">653</context>
|
<context context-type="linenumber">657</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
|
||||||
@@ -3338,11 +3338,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1405</context>
|
<context context-type="linenumber">1409</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1788</context>
|
<context context-type="linenumber">1792</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -3958,6 +3958,22 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">清除</target>
|
<target state="translated">清除</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="2807800733729323332" datatype="html">
|
||||||
|
<source>Yes</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/common/confirm-button/confirm-button.component.html</context>
|
||||||
|
<context context-type="linenumber">20</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
||||||
|
<context context-type="linenumber">102</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
||||||
|
<context context-type="linenumber">386</context>
|
||||||
|
</context-group>
|
||||||
|
<target state="translated">是</target>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="7515883357904500238" datatype="html">
|
<trans-unit id="7515883357904500238" datatype="html">
|
||||||
<source>Are you sure?</source>
|
<source>Are you sure?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -3986,7 +4002,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1358</context>
|
<context context-type="linenumber">1362</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -4110,7 +4126,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1841</context>
|
<context context-type="linenumber">1845</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Remove password protection</target>
|
<target state="needs-translation">Remove password protection</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4122,7 +4138,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1842</context>
|
<context context-type="linenumber">1846</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
<target state="needs-translation">Create an unprotected copy or replace the existing file.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -4134,7 +4150,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1843</context>
|
<context context-type="linenumber">1847</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">開始</target>
|
<target state="translated">開始</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -6258,7 +6274,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1362</context>
|
<context context-type="linenumber">1366</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -7056,7 +7072,7 @@
|
|||||||
<source>Error loading preview</source>
|
<source>Error loading preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">讀取預覽時發生錯誤</target>
|
<target state="translated">讀取預覽時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -7064,7 +7080,7 @@
|
|||||||
<source>Open preview</source>
|
<source>Open preview</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
<context context-type="sourcefile">src/app/components/common/preview-popup/preview-popup.component.ts</context>
|
||||||
<context context-type="linenumber">61</context>
|
<context context-type="linenumber">62</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">開啟預覽</target>
|
<target state="translated">開啟預覽</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8200,18 +8216,6 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">以擁有者篩選</target>
|
<target state="translated">以擁有者篩選</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2807800733729323332" datatype="html">
|
|
||||||
<source>Yes</source>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/document-list/document-list.component.html</context>
|
|
||||||
<context context-type="linenumber">386</context>
|
|
||||||
</context-group>
|
|
||||||
<target state="translated">是</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="3542042671420335679" datatype="html">
|
<trans-unit id="3542042671420335679" datatype="html">
|
||||||
<source>No</source>
|
<source>No</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@@ -8782,7 +8786,7 @@
|
|||||||
<source>Enter Password</source>
|
<source>Enter Password</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.html</context>
|
||||||
<context context-type="linenumber">512</context>
|
<context context-type="linenumber">513</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">輸入密碼</target>
|
<target state="translated">輸入密碼</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8790,7 +8794,7 @@
|
|||||||
<source>Error retrieving metadata</source>
|
<source>Error retrieving metadata</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">423</context>
|
<context context-type="linenumber">424</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">取得詮釋資料時發生錯誤</target>
|
<target state="translated">取得詮釋資料時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8798,11 +8802,11 @@
|
|||||||
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
<source>An error occurred loading content: <x id="PH" equiv-text="err.message ?? err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">525,527</context>
|
<context context-type="linenumber">526,528</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">982,984</context>
|
<context context-type="linenumber">986,988</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">讀取內容時發生錯誤:<x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
<target state="translated">讀取內容時發生錯誤:<x id="PH" equiv-text="err.message ?? err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8810,7 +8814,7 @@
|
|||||||
<source>Document was updated</source>
|
<source>Document was updated</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">648</context>
|
<context context-type="linenumber">652</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated</target>
|
<target state="needs-translation">Document was updated</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8818,7 +8822,7 @@
|
|||||||
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
<source>Document was updated at <x id="PH" equiv-text="formattedModified"/>.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">649</context>
|
<context context-type="linenumber">653</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
<target state="needs-translation">Document was updated at <x id="PH" equiv-text="formattedModified"/>.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8826,7 +8830,7 @@
|
|||||||
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
<source>Reload to discard your local unsaved edits and load the latest remote version.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">650</context>
|
<context context-type="linenumber">654</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
<target state="needs-translation">Reload to discard your local unsaved edits and load the latest remote version.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8834,7 +8838,7 @@
|
|||||||
<source>Reload</source>
|
<source>Reload</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">652</context>
|
<context context-type="linenumber">656</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reload</target>
|
<target state="needs-translation">Reload</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8842,7 +8846,7 @@
|
|||||||
<source>Document reloaded with latest changes.</source>
|
<source>Document reloaded with latest changes.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">708</context>
|
<context context-type="linenumber">712</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded with latest changes.</target>
|
<target state="needs-translation">Document reloaded with latest changes.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8850,7 +8854,7 @@
|
|||||||
<source>Document reloaded.</source>
|
<source>Document reloaded.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">719</context>
|
<context context-type="linenumber">723</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Document reloaded.</target>
|
<target state="needs-translation">Document reloaded.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8858,7 +8862,7 @@
|
|||||||
<source>Next document</source>
|
<source>Next document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">821</context>
|
<context context-type="linenumber">825</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">下一個文件</target>
|
<target state="translated">下一個文件</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8866,7 +8870,7 @@
|
|||||||
<source>Previous document</source>
|
<source>Previous document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">831</context>
|
<context context-type="linenumber">835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">上一個文件</target>
|
<target state="translated">上一個文件</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8874,7 +8878,7 @@
|
|||||||
<source>Close document</source>
|
<source>Close document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">839</context>
|
<context context-type="linenumber">843</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
<context context-type="sourcefile">src/app/services/open-documents.service.ts</context>
|
||||||
@@ -8886,7 +8890,7 @@
|
|||||||
<source>Save document</source>
|
<source>Save document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">846</context>
|
<context context-type="linenumber">850</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">儲存文件</target>
|
<target state="translated">儲存文件</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8894,7 +8898,7 @@
|
|||||||
<source>Save and close / next</source>
|
<source>Save and close / next</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">855</context>
|
<context context-type="linenumber">859</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">儲存並關閉/下一個</target>
|
<target state="translated">儲存並關閉/下一個</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8902,7 +8906,7 @@
|
|||||||
<source>Error retrieving version content</source>
|
<source>Error retrieving version content</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">965</context>
|
<context context-type="linenumber">969</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error retrieving version content</target>
|
<target state="needs-translation">Error retrieving version content</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8910,7 +8914,7 @@
|
|||||||
<source>Error retrieving suggestions.</source>
|
<source>Error retrieving suggestions.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1026</context>
|
<context context-type="linenumber">1030</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">取得建議時發生錯誤。</target>
|
<target state="translated">取得建議時發生錯誤。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8918,11 +8922,11 @@
|
|||||||
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
<source>Document "<x id="PH" equiv-text="newValues.title"/>" saved successfully.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1238</context>
|
<context context-type="linenumber">1242</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1265</context>
|
<context context-type="linenumber">1269</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">文件「<x id="PH" equiv-text="newValues.title"/>」儲存成功。</target>
|
<target state="translated">文件「<x id="PH" equiv-text="newValues.title"/>」儲存成功。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8930,7 +8934,7 @@
|
|||||||
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
<source>Error saving document "<x id="PH" equiv-text="this.document().title"/>"</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1271</context>
|
<context context-type="linenumber">1275</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
<target state="needs-translation">Error saving document "<x id="PH" equiv-text="this.document().title"/>"</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8938,7 +8942,7 @@
|
|||||||
<source>Error saving document</source>
|
<source>Error saving document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1326</context>
|
<context context-type="linenumber">1330</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">儲存文件時發生錯誤</target>
|
<target state="translated">儲存文件時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8946,7 +8950,7 @@
|
|||||||
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
<source>Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1359</context>
|
<context context-type="linenumber">1363</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
<target state="needs-translation">Do you really want to move the document "<x id="PH" equiv-text="this.document().title"/>" to the trash?</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8954,7 +8958,7 @@
|
|||||||
<source>Documents can be restored prior to permanent deletion.</source>
|
<source>Documents can be restored prior to permanent deletion.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1360</context>
|
<context context-type="linenumber">1364</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8966,7 +8970,7 @@
|
|||||||
<source>Error deleting document</source>
|
<source>Error deleting document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1381</context>
|
<context context-type="linenumber">1385</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">刪除文件時發生錯誤</target>
|
<target state="translated">刪除文件時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8974,7 +8978,7 @@
|
|||||||
<source>Reprocess confirm</source>
|
<source>Reprocess confirm</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1401</context>
|
<context context-type="linenumber">1405</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
|
||||||
@@ -8986,7 +8990,7 @@
|
|||||||
<source>This operation will permanently recreate the archive file for this document.</source>
|
<source>This operation will permanently recreate the archive file for this document.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1402</context>
|
<context context-type="linenumber">1406</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">將永久重新建立此文件的封存檔案。</target>
|
<target state="translated">將永久重新建立此文件的封存檔案。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -8994,7 +8998,7 @@
|
|||||||
<source>The archive file will be re-generated with the current settings.</source>
|
<source>The archive file will be re-generated with the current settings.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1403</context>
|
<context context-type="linenumber">1407</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">封存檔案將以目前設定重新產生。</target>
|
<target state="translated">封存檔案將以目前設定重新產生。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9002,7 +9006,7 @@
|
|||||||
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1413</context>
|
<context context-type="linenumber">1417</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Reprocess operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9010,7 +9014,7 @@
|
|||||||
<source>Error executing operation</source>
|
<source>Error executing operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1424</context>
|
<context context-type="linenumber">1428</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">執行作業時發生錯誤</target>
|
<target state="translated">執行作業時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9018,7 +9022,7 @@
|
|||||||
<source>Error downloading document</source>
|
<source>Error downloading document</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1487</context>
|
<context context-type="linenumber">1491</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">下載文件時發生錯誤</target>
|
<target state="translated">下載文件時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9026,7 +9030,7 @@
|
|||||||
<source>Page Fit</source>
|
<source>Page Fit</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1565</context>
|
<context context-type="linenumber">1569</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">符合頁面大小</target>
|
<target state="translated">符合頁面大小</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9034,7 +9038,7 @@
|
|||||||
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1808</context>
|
<context context-type="linenumber">1812</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">PDF edit operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9042,7 +9046,7 @@
|
|||||||
<source>Error executing PDF edit operation</source>
|
<source>Error executing PDF edit operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1820</context>
|
<context context-type="linenumber">1824</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">執行 PDF 編輯時時發生錯誤</target>
|
<target state="translated">執行 PDF 編輯時時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9050,7 +9054,7 @@
|
|||||||
<source>Please enter the current password before attempting to remove it.</source>
|
<source>Please enter the current password before attempting to remove it.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1831</context>
|
<context context-type="linenumber">1835</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
<target state="needs-translation">Please enter the current password before attempting to remove it.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9058,7 +9062,7 @@
|
|||||||
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
<source>Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1865</context>
|
<context context-type="linenumber">1869</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
<target state="needs-translation">Password removal operation for "<x id="PH" equiv-text="this.document().title"/>" will begin in the background.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9066,7 +9070,7 @@
|
|||||||
<source>Error executing password removal operation</source>
|
<source>Error executing password removal operation</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1879</context>
|
<context context-type="linenumber">1883</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="needs-translation">Error executing password removal operation</target>
|
<target state="needs-translation">Error executing password removal operation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9074,7 +9078,7 @@
|
|||||||
<source>Print failed.</source>
|
<source>Print failed.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1925</context>
|
<context context-type="linenumber">1929</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">列印失敗。</target>
|
<target state="translated">列印失敗。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9082,7 +9086,7 @@
|
|||||||
<source>Error loading document for printing.</source>
|
<source>Error loading document for printing.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">1938</context>
|
<context context-type="linenumber">1942</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">載入列印文件時發生錯誤</target>
|
<target state="translated">載入列印文件時發生錯誤</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -9090,11 +9094,11 @@
|
|||||||
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
<source>An error occurred loading tiff: <x id="PH" equiv-text="err.toString()"/></source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2008</context>
|
<context context-type="linenumber">2012</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
<context context-type="sourcefile">src/app/components/document-detail/document-detail.component.ts</context>
|
||||||
<context context-type="linenumber">2014</context>
|
<context context-type="linenumber">2018</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">讀取 TIFF 檔時發生錯誤:<x id="PH" equiv-text="err.toString()"/></target>
|
<target state="translated">讀取 TIFF 檔時發生錯誤:<x id="PH" equiv-text="err.toString()"/></target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12771,7 +12775,7 @@
|
|||||||
<source>Successfully completed one-time migratration of settings to the database!</source>
|
<source>Successfully completed one-time migratration of settings to the database!</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">636</context>
|
<context context-type="linenumber">635</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">設定值已成功移轉到資料庫!</target>
|
<target state="translated">設定值已成功移轉到資料庫!</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12779,7 +12783,7 @@
|
|||||||
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
<source>Unable to migrate settings to the database, please try saving manually.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">637</context>
|
<context context-type="linenumber">636</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">無法將設定遷移至資料庫,請嘗試手動儲存。</target>
|
<target state="translated">無法將設定遷移至資料庫,請嘗試手動儲存。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@@ -12787,7 +12791,7 @@
|
|||||||
<source>You can restart the tour from the settings page.</source>
|
<source>You can restart the tour from the settings page.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
<context context-type="sourcefile">src/app/services/settings.service.ts</context>
|
||||||
<context context-type="linenumber">709</context>
|
<context context-type="linenumber">708</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<target state="translated">可以從設定頁面重新開始導覽。</target>
|
<target state="translated">可以從設定頁面重新開始導覽。</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|||||||
@@ -160,13 +160,14 @@ def should_produce_archive(
|
|||||||
_log.debug("Archive: yes — image document, ARCHIVE_FILE_GENERATION=auto")
|
_log.debug("Archive: yes — image document, ARCHIVE_FILE_GENERATION=auto")
|
||||||
return True
|
return True
|
||||||
if mime_type == "application/pdf":
|
if mime_type == "application/pdf":
|
||||||
if is_tagged_pdf(document_path):
|
text = extract_pdf_text(document_path)
|
||||||
|
has_text = text is not None and len(text) > 0
|
||||||
|
if has_text and is_tagged_pdf(document_path):
|
||||||
_log.debug(
|
_log.debug(
|
||||||
"Archive: no — born-digital PDF (structure tags detected),"
|
"Archive: no — born-digital PDF (structure tags detected),"
|
||||||
" ARCHIVE_FILE_GENERATION=auto",
|
" ARCHIVE_FILE_GENERATION=auto",
|
||||||
)
|
)
|
||||||
return False
|
return False
|
||||||
text = extract_pdf_text(document_path)
|
|
||||||
if text is None or len(text) <= PDF_TEXT_MIN_LENGTH:
|
if text is None or len(text) <= PDF_TEXT_MIN_LENGTH:
|
||||||
_log.debug(
|
_log.debug(
|
||||||
"Archive: yes — scanned PDF (text_length=%d ≤ %d),"
|
"Archive: yes — scanned PDF (text_length=%d ≤ %d),"
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ from drf_spectacular.utils import extend_schema_field
|
|||||||
from guardian.utils import get_group_obj_perms_model
|
from guardian.utils import get_group_obj_perms_model
|
||||||
from guardian.utils import get_user_obj_perms_model
|
from guardian.utils import get_user_obj_perms_model
|
||||||
from rest_framework import serializers
|
from rest_framework import serializers
|
||||||
|
from rest_framework.filters import BaseFilterBackend
|
||||||
from rest_framework.filters import OrderingFilter
|
from rest_framework.filters import OrderingFilter
|
||||||
from rest_framework_guardian.filters import ObjectPermissionsFilter
|
from rest_framework_guardian.filters import ObjectPermissionsFilter
|
||||||
|
|
||||||
@@ -50,6 +51,7 @@ from documents.models import ShareLink
|
|||||||
from documents.models import ShareLinkBundle
|
from documents.models import ShareLinkBundle
|
||||||
from documents.models import StoragePath
|
from documents.models import StoragePath
|
||||||
from documents.models import Tag
|
from documents.models import Tag
|
||||||
|
from documents.permissions import permitted_document_ids
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from collections.abc import Callable
|
from collections.abc import Callable
|
||||||
@@ -161,7 +163,9 @@ class ObjectFilter(Filter):
|
|||||||
class InboxFilter(Filter):
|
class InboxFilter(Filter):
|
||||||
def filter(self, qs, value):
|
def filter(self, qs, value):
|
||||||
if value == "true":
|
if value == "true":
|
||||||
return qs.filter(tags__is_inbox_tag=True)
|
# A document can have more than one tag flagged as an inbox tag
|
||||||
|
# (nothing enforces uniqueness), so this join can multiply rows.
|
||||||
|
return qs.filter(tags__is_inbox_tag=True).distinct()
|
||||||
elif value == "false":
|
elif value == "false":
|
||||||
return qs.exclude(tags__is_inbox_tag=True)
|
return qs.exclude(tags__is_inbox_tag=True)
|
||||||
else:
|
else:
|
||||||
@@ -268,6 +272,10 @@ class CustomFieldsFilter(Filter):
|
|||||||
for _, option in enumerate(options):
|
for _, option in enumerate(options):
|
||||||
if option.get("label").lower().find(value.lower()) != -1:
|
if option.get("label").lower().find(value.lower()) != -1:
|
||||||
option_ids.extend([option.get("id")])
|
option_ids.extend([option.get("id")])
|
||||||
|
# A document with multiple custom field instances can match more
|
||||||
|
# than one of these OR-ed branches (or the same branch via
|
||||||
|
# different fields), each via its own join to custom_fields --
|
||||||
|
# dedupe explicitly rather than relying on the caller to.
|
||||||
return (
|
return (
|
||||||
qs.filter(custom_fields__field__name__icontains=value)
|
qs.filter(custom_fields__field__name__icontains=value)
|
||||||
| qs.filter(custom_fields__value_text__icontains=value)
|
| qs.filter(custom_fields__value_text__icontains=value)
|
||||||
@@ -280,7 +288,7 @@ class CustomFieldsFilter(Filter):
|
|||||||
| qs.filter(custom_fields__value_document_ids__icontains=value)
|
| qs.filter(custom_fields__value_document_ids__icontains=value)
|
||||||
| qs.filter(custom_fields__value_select__in=option_ids)
|
| qs.filter(custom_fields__value_select__in=option_ids)
|
||||||
| qs.filter(custom_fields__value_long_text__icontains=value)
|
| qs.filter(custom_fields__value_long_text__icontains=value)
|
||||||
)
|
).distinct()
|
||||||
else:
|
else:
|
||||||
return qs
|
return qs
|
||||||
|
|
||||||
@@ -1032,6 +1040,31 @@ class ObjectOwnedOrGrantedPermissionsFilter(ObjectPermissionsFilter):
|
|||||||
return objects_with_perms | objects_owned | objects_unowned
|
return objects_with_perms | objects_owned | objects_unowned
|
||||||
|
|
||||||
|
|
||||||
|
class DocumentPermissionsFilter(BaseFilterBackend):
|
||||||
|
"""
|
||||||
|
A filter backend limiting Document results to those the requesting user
|
||||||
|
owns, are unowned, or has explicit (user- or group-level) view
|
||||||
|
permission on.
|
||||||
|
|
||||||
|
Unlike ``ObjectOwnedOrGrantedPermissionsFilter``, this does not build an
|
||||||
|
``objects_with_perms | objects_owned | objects_unowned`` union of
|
||||||
|
querysets derived from the same base queryset. When that base queryset
|
||||||
|
already carries independent joins on a multi-valued relation (e.g. two
|
||||||
|
separate joins from ``tags__id__all`` filtering on two tags), each
|
||||||
|
OR-ed branch can end up pairing those joins' aliases differently,
|
||||||
|
letting more than one row out of the join's cross product satisfy the
|
||||||
|
combined WHERE -- returning the same document more than once. Filtering
|
||||||
|
via a single ``id__in`` against ``permitted_document_ids`` (a plain
|
||||||
|
subquery, not a join) sidesteps that entirely and is also cheaper than
|
||||||
|
guardian's join-based permission check.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def filter_queryset(self, request, queryset, view):
|
||||||
|
if request.user.is_superuser:
|
||||||
|
return queryset
|
||||||
|
return queryset.filter(id__in=permitted_document_ids(request.user))
|
||||||
|
|
||||||
|
|
||||||
class ObjectOwnedPermissionsFilter(ObjectPermissionsFilter):
|
class ObjectOwnedPermissionsFilter(ObjectPermissionsFilter):
|
||||||
"""
|
"""
|
||||||
A filter backend that limits results to those where the requesting user
|
A filter backend that limits results to those where the requesting user
|
||||||
|
|||||||
@@ -4,14 +4,14 @@ from django.contrib.auth.models import Group
|
|||||||
from django.contrib.auth.models import Permission
|
from django.contrib.auth.models import Permission
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
|
from django.db.models import Case
|
||||||
from django.db.models import Count
|
from django.db.models import Count
|
||||||
from django.db.models import IntegerField
|
from django.db.models import IntegerField
|
||||||
from django.db.models import OuterRef
|
|
||||||
from django.db.models import Q
|
from django.db.models import Q
|
||||||
from django.db.models import QuerySet
|
from django.db.models import QuerySet
|
||||||
from django.db.models import Subquery
|
from django.db.models import Value
|
||||||
|
from django.db.models import When
|
||||||
from django.db.models.functions import Cast
|
from django.db.models.functions import Cast
|
||||||
from django.db.models.functions import Coalesce
|
|
||||||
from guardian.core import ObjectPermissionChecker
|
from guardian.core import ObjectPermissionChecker
|
||||||
from guardian.models import GroupObjectPermission
|
from guardian.models import GroupObjectPermission
|
||||||
from guardian.models import UserObjectPermission
|
from guardian.models import UserObjectPermission
|
||||||
@@ -163,7 +163,7 @@ def set_permissions_for_object(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _permitted_document_ids(user):
|
def permitted_document_ids(user):
|
||||||
"""
|
"""
|
||||||
Return a queryset of document IDs the user may view, limited to non-deleted
|
Return a queryset of document IDs the user may view, limited to non-deleted
|
||||||
documents. This intentionally avoids ``get_objects_for_user`` to keep the
|
documents. This intentionally avoids ``get_objects_for_user`` to keep the
|
||||||
@@ -204,20 +204,95 @@ def _permitted_document_ids(user):
|
|||||||
).values_list("id", flat=True)
|
).values_list("id", flat=True)
|
||||||
|
|
||||||
|
|
||||||
def get_document_count_filter_for_user(user):
|
def get_document_count_filter_for_user(user, related_name: str = "documents"):
|
||||||
"""
|
"""
|
||||||
Return the Q object used to filter document counts for the given user.
|
Return the Q object used to filter document counts for the given user.
|
||||||
|
|
||||||
The filter is expressed as an ``id__in`` against a small subquery of permitted
|
The filter is expressed as an ``id__in`` against a small subquery of permitted
|
||||||
document IDs to keep the generated SQL simple and avoid large OR clauses.
|
document IDs to keep the generated SQL simple and avoid large OR clauses.
|
||||||
|
|
||||||
|
``related_name`` is the ORM path from the annotated model to Document (e.g.
|
||||||
|
``"documents"`` for Tag's direct M2M, or ``"fields__document"`` for CustomField,
|
||||||
|
which only reaches Document via the CustomFieldInstance through-model).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if getattr(user, "is_superuser", False):
|
if getattr(user, "is_superuser", False):
|
||||||
# Superuser: no permission filtering needed
|
# Superuser: no permission filtering needed
|
||||||
return Q(documents__deleted_at__isnull=True)
|
return Q(**{f"{related_name}__deleted_at__isnull": True})
|
||||||
|
|
||||||
permitted_ids = _permitted_document_ids(user)
|
permitted_ids = permitted_document_ids(user)
|
||||||
return Q(documents__id__in=permitted_ids)
|
return Q(**{f"{related_name}__id__in": permitted_ids})
|
||||||
|
|
||||||
|
|
||||||
|
def annotate_document_count_by_ids(
|
||||||
|
queryset: QuerySet[Any],
|
||||||
|
through_model: Any,
|
||||||
|
related_object_field: str,
|
||||||
|
document_ids: Any,
|
||||||
|
target_field: str = "document_id",
|
||||||
|
) -> QuerySet[Any]:
|
||||||
|
"""
|
||||||
|
Annotate a queryset with a document count for a relation to Document that
|
||||||
|
goes through an M2M/through-model table (e.g. Tag via
|
||||||
|
``Document.tags.through``, or CustomField via ``CustomFieldInstance``),
|
||||||
|
for an explicit, already-resolved set of document ids.
|
||||||
|
|
||||||
|
Counts are computed via a single, independent GROUP BY over the relation
|
||||||
|
table -- with the id filter expressed as a plain ``WHERE`` rather than an
|
||||||
|
aggregate ``FILTER`` -- then injected via ``Case``/``When``. This
|
||||||
|
deliberately avoids two slower alternatives found while building this:
|
||||||
|
|
||||||
|
- A per-outer-row correlated subquery (one execution per row of the
|
||||||
|
annotated queryset): fine at a handful of rows, catastrophic once the
|
||||||
|
queryset has hundreds/thousands of rows.
|
||||||
|
- ``Count(..., filter=Q(id__in=document_ids), distinct=True)`` applied
|
||||||
|
directly to the M2M relation: Postgres can fail to plan the ``id__in``
|
||||||
|
check as a semi-join and instead re-checks subquery membership once per
|
||||||
|
row of the (much larger) M2M join -- worse than the correlated subquery.
|
||||||
|
|
||||||
|
Aggregation is restricted to rows whose ``related_object_field`` is one of
|
||||||
|
``queryset``'s pks, so passing a subset (e.g. a handful of tag descendants)
|
||||||
|
doesn't pay the cost of counting for every row matching ``document_ids``.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
queryset: base queryset to annotate (must contain pk)
|
||||||
|
through_model: model representing the relation (e.g., Document.tags.through
|
||||||
|
or CustomFieldInstance)
|
||||||
|
related_object_field: field on the relation pointing back to queryset pk
|
||||||
|
document_ids: the document ids to count against -- a concrete list/set,
|
||||||
|
or a simple (already resolved) queryset of ids. Callers
|
||||||
|
that need this filtered by a complex condition (e.g. a
|
||||||
|
permission check) should resolve it to a concrete list
|
||||||
|
first if the same ids will be reused across multiple
|
||||||
|
calls, rather than passing the complex queryset itself
|
||||||
|
into each -- see ``_get_selection_data_for_queryset``.
|
||||||
|
target_field: field on the relation pointing to Document id
|
||||||
|
"""
|
||||||
|
|
||||||
|
counts = (
|
||||||
|
through_model.objects.filter(
|
||||||
|
**{
|
||||||
|
f"{related_object_field}__in": queryset.values("pk"),
|
||||||
|
f"{target_field}__in": document_ids,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.values(related_object_field)
|
||||||
|
.annotate(c=Count(target_field, distinct=True))
|
||||||
|
)
|
||||||
|
counts_by_pk = {row[related_object_field]: row["c"] for row in counts}
|
||||||
|
|
||||||
|
if not counts_by_pk:
|
||||||
|
return queryset.annotate(
|
||||||
|
document_count=Value(0, output_field=IntegerField()),
|
||||||
|
)
|
||||||
|
|
||||||
|
return queryset.annotate(
|
||||||
|
document_count=Case(
|
||||||
|
*(When(pk=pk, then=Value(count)) for pk, count in counts_by_pk.items()),
|
||||||
|
default=Value(0),
|
||||||
|
output_field=IntegerField(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def annotate_document_count_for_related_queryset(
|
def annotate_document_count_for_related_queryset(
|
||||||
@@ -228,31 +303,17 @@ def annotate_document_count_for_related_queryset(
|
|||||||
user: User | None = None,
|
user: User | None = None,
|
||||||
) -> QuerySet[Any]:
|
) -> QuerySet[Any]:
|
||||||
"""
|
"""
|
||||||
Annotate a queryset with permissions-aware document counts using a subquery
|
Same as ``annotate_document_count_by_ids``, but resolves the document ids
|
||||||
against a relation table.
|
from the given user's view permissions rather than taking them directly.
|
||||||
|
|
||||||
Args:
|
|
||||||
queryset: base queryset to annotate (must contain pk)
|
|
||||||
through_model: model representing the relation (e.g., Document.tags.through
|
|
||||||
or CustomFieldInstance)
|
|
||||||
source_field: field on the relation pointing back to queryset pk
|
|
||||||
target_field: field on the relation pointing to Document id
|
|
||||||
user: the user for whom to filter permitted document ids
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
permitted_ids = _permitted_document_ids(user)
|
return annotate_document_count_by_ids(
|
||||||
counts = (
|
queryset,
|
||||||
through_model.objects.filter(
|
through_model=through_model,
|
||||||
**{
|
related_object_field=related_object_field,
|
||||||
related_object_field: OuterRef("pk"),
|
document_ids=permitted_document_ids(user),
|
||||||
f"{target_field}__in": permitted_ids,
|
target_field=target_field,
|
||||||
},
|
|
||||||
)
|
|
||||||
.values(related_object_field)
|
|
||||||
.annotate(c=Count(target_field))
|
|
||||||
.values("c")
|
|
||||||
)
|
)
|
||||||
return queryset.annotate(document_count=Coalesce(Subquery(counts[:1]), 0))
|
|
||||||
|
|
||||||
|
|
||||||
def get_objects_for_user_owner_aware(
|
def get_objects_for_user_owner_aware(
|
||||||
|
|||||||
@@ -475,7 +475,13 @@ class TantivyBackend:
|
|||||||
note_texts: list[str] = []
|
note_texts: list[str] = []
|
||||||
for note in document.notes.all():
|
for note in document.notes.all():
|
||||||
num_notes += 1
|
num_notes += 1
|
||||||
doc.add_json("notes", {"note": note.note, "user": note.user.username})
|
doc.add_json(
|
||||||
|
"notes",
|
||||||
|
{
|
||||||
|
"note": note.note,
|
||||||
|
"user": note.user.username if note.user else None,
|
||||||
|
},
|
||||||
|
)
|
||||||
note_texts.append(note.note)
|
note_texts.append(note.note)
|
||||||
if note_texts:
|
if note_texts:
|
||||||
doc.add_text("notes_text", " ".join(note_texts))
|
doc.add_text("notes_text", " ".join(note_texts))
|
||||||
|
|||||||
@@ -392,15 +392,34 @@ class OwnedObjectSerializer(
|
|||||||
}
|
}
|
||||||
|
|
||||||
def get_user_can_change(self, obj) -> bool:
|
def get_user_can_change(self, obj) -> bool:
|
||||||
checker = ObjectPermissionChecker(self.user) if self.user is not None else None
|
if obj.owner is None or obj.owner == self.user:
|
||||||
return (
|
return True
|
||||||
obj.owner is None
|
if self.user is None:
|
||||||
or obj.owner == self.user
|
return False
|
||||||
or (
|
if self.user.is_active and self.user.is_superuser:
|
||||||
self.user is not None
|
# Mirrors guardian's own ObjectPermissionChecker.has_perm() shortcut --
|
||||||
and checker.has_perm(f"change_{obj.__class__.__name__.lower()}", obj)
|
# superusers aren't necessarily granted explicit object permissions,
|
||||||
|
# so the batched context below would otherwise incorrectly say no.
|
||||||
|
return True
|
||||||
|
|
||||||
|
# Prefer the page-level batch computed by BulkPermissionMixin
|
||||||
|
# (get_serializer_context) over a fresh per-object guardian check,
|
||||||
|
# which would otherwise query the permission tables once per row.
|
||||||
|
users_change_perms = self.context.get("users_change_perms")
|
||||||
|
groups_change_perms = self.context.get("groups_change_perms")
|
||||||
|
if users_change_perms is not None and groups_change_perms is not None:
|
||||||
|
if self.user.pk in users_change_perms.get(obj.pk, []):
|
||||||
|
return True
|
||||||
|
user_group_ids = getattr(self, "_user_group_ids", None)
|
||||||
|
if user_group_ids is None:
|
||||||
|
user_group_ids = set(self.user.groups.values_list("id", flat=True))
|
||||||
|
self._user_group_ids = user_group_ids
|
||||||
|
return bool(
|
||||||
|
user_group_ids.intersection(groups_change_perms.get(obj.pk, [])),
|
||||||
)
|
)
|
||||||
)
|
|
||||||
|
checker = ObjectPermissionChecker(self.user)
|
||||||
|
return checker.has_perm(f"change_{obj.__class__.__name__.lower()}", obj)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_shared_object_pks(objects: Iterable):
|
def get_shared_object_pks(objects: Iterable):
|
||||||
|
|||||||
@@ -1264,7 +1264,17 @@ def task_failure_handler(
|
|||||||
"error_message": str(exception) if exception else "Unknown error",
|
"error_message": str(exception) if exception else "Unknown error",
|
||||||
}
|
}
|
||||||
if traceback:
|
if traceback:
|
||||||
tb_str = "".join(_tb.format_tb(traceback))
|
# billiard/celery pass a pre-formatted string instead of a real
|
||||||
|
# traceback object when the worker process itself died (e.g.
|
||||||
|
# WorkerLostError from a SIGILL) since there's no live traceback
|
||||||
|
# to walk in that case.
|
||||||
|
tb_str = (
|
||||||
|
traceback
|
||||||
|
if isinstance(traceback, str)
|
||||||
|
else "".join(
|
||||||
|
_tb.format_tb(traceback),
|
||||||
|
)
|
||||||
|
)
|
||||||
result_data["traceback"] = tb_str[:5000]
|
result_data["traceback"] = tb_str[:5000]
|
||||||
|
|
||||||
now = timezone.now()
|
now = timezone.now()
|
||||||
|
|||||||
@@ -311,6 +311,7 @@ def sanity_check(*, raise_on_error: bool = True) -> str:
|
|||||||
def bulk_update_documents(document_ids) -> None:
|
def bulk_update_documents(document_ids) -> None:
|
||||||
from documents.search import get_backend
|
from documents.search import get_backend
|
||||||
|
|
||||||
|
document_ids = list(document_ids)
|
||||||
documents = Document.objects.filter(id__in=document_ids)
|
documents = Document.objects.filter(id__in=document_ids)
|
||||||
|
|
||||||
for doc in documents:
|
for doc in documents:
|
||||||
@@ -331,6 +332,7 @@ def bulk_update_documents(document_ids) -> None:
|
|||||||
if ai_config.llm_index_enabled:
|
if ai_config.llm_index_enabled:
|
||||||
update_llm_index(
|
update_llm_index(
|
||||||
rebuild=False,
|
rebuild=False,
|
||||||
|
document_ids=document_ids,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -844,6 +844,23 @@ class TestFieldHandling:
|
|||||||
f"Expected 1, got {len(ids)}. Note content should be searchable via notes.note: prefix."
|
f"Expected 1, got {len(ids)}. Note content should be searchable via notes.note: prefix."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_notes_without_user_are_indexed(self, backend: TantivyBackend) -> None:
|
||||||
|
"""Notes whose user was deleted (SET_NULL) must not break indexing."""
|
||||||
|
doc = Document.objects.create(
|
||||||
|
title="Doc with orphaned note",
|
||||||
|
content="test",
|
||||||
|
checksum="NT2",
|
||||||
|
pk=81,
|
||||||
|
)
|
||||||
|
Note.objects.create(document=doc, note="Orphaned note", user=None)
|
||||||
|
|
||||||
|
backend.add_or_update(doc)
|
||||||
|
|
||||||
|
ids = backend.search_ids("notes.note:orphaned", user=None)
|
||||||
|
assert len(ids) == 1, (
|
||||||
|
f"Expected 1, got {len(ids)}. Notes without a user should still be indexed."
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestHighlightHits:
|
class TestHighlightHits:
|
||||||
"""Test highlight_hits returns proper HTML strings, not raw Snippet objects."""
|
"""Test highlight_hits returns proper HTML strings, not raw Snippet objects."""
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ from unittest import mock
|
|||||||
import celery
|
import celery
|
||||||
from dateutil import parser
|
from dateutil import parser
|
||||||
from django.conf import settings
|
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 Permission
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core import mail
|
from django.core import mail
|
||||||
@@ -47,6 +48,8 @@ from documents.models import Workflow
|
|||||||
from documents.models import WorkflowAction
|
from documents.models import WorkflowAction
|
||||||
from documents.models import WorkflowTrigger
|
from documents.models import WorkflowTrigger
|
||||||
from documents.signals.handlers import run_workflows
|
from documents.signals.handlers import run_workflows
|
||||||
|
from documents.tests.factories import DocumentFactory
|
||||||
|
from documents.tests.factories import TagFactory
|
||||||
from documents.tests.utils import ConsumeTaskMixin
|
from documents.tests.utils import ConsumeTaskMixin
|
||||||
from documents.tests.utils import DirectoriesMixin
|
from documents.tests.utils import DirectoriesMixin
|
||||||
from documents.tests.utils import read_streaming_response
|
from documents.tests.utils import read_streaming_response
|
||||||
@@ -883,6 +886,62 @@ class TestDocumentApi(DirectoriesMixin, ConsumeTaskMixin, APITestCase):
|
|||||||
results = response.data["results"]
|
results = response.data["results"]
|
||||||
self.assertEqual(len(results), 3)
|
self.assertEqual(len(results), 3)
|
||||||
|
|
||||||
|
def test_is_in_inbox_filter_no_duplicates_with_multiple_inbox_tags(self) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- A document tagged with two different inbox tags
|
||||||
|
WHEN:
|
||||||
|
- The document list is filtered by is_in_inbox=true
|
||||||
|
THEN:
|
||||||
|
- The document appears exactly once, not once per matching tag
|
||||||
|
"""
|
||||||
|
doc = Document.objects.create(title="doc", checksum="c1")
|
||||||
|
inbox_1 = Tag.objects.create(name="inbox1", is_inbox_tag=True)
|
||||||
|
inbox_2 = Tag.objects.create(name="inbox2", is_inbox_tag=True)
|
||||||
|
doc.tags.add(inbox_1, inbox_2)
|
||||||
|
|
||||||
|
response = self.client.get("/api/documents/?is_in_inbox=true")
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
results = response.data["results"]
|
||||||
|
self.assertEqual(len(results), 1)
|
||||||
|
self.assertEqual(results[0]["id"], doc.id)
|
||||||
|
|
||||||
|
def test_custom_fields_icontains_filter_no_duplicates(self) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- A document with two custom field instances that both match the
|
||||||
|
same custom_fields__icontains search term
|
||||||
|
WHEN:
|
||||||
|
- The document list is filtered by custom_fields__icontains
|
||||||
|
THEN:
|
||||||
|
- The document appears exactly once, not once per matching field
|
||||||
|
"""
|
||||||
|
doc = Document.objects.create(title="doc", checksum="c1")
|
||||||
|
field_1 = CustomField.objects.create(
|
||||||
|
name="apple",
|
||||||
|
data_type=CustomField.FieldDataType.STRING,
|
||||||
|
)
|
||||||
|
field_2 = CustomField.objects.create(
|
||||||
|
name="apricot",
|
||||||
|
data_type=CustomField.FieldDataType.STRING,
|
||||||
|
)
|
||||||
|
CustomFieldInstance.objects.create(
|
||||||
|
document=doc,
|
||||||
|
field=field_1,
|
||||||
|
value_text="something",
|
||||||
|
)
|
||||||
|
CustomFieldInstance.objects.create(
|
||||||
|
document=doc,
|
||||||
|
field=field_2,
|
||||||
|
value_text="something else",
|
||||||
|
)
|
||||||
|
|
||||||
|
response = self.client.get("/api/documents/?custom_fields__icontains=ap")
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
results = response.data["results"]
|
||||||
|
self.assertEqual(len(results), 1)
|
||||||
|
self.assertEqual(results[0]["id"], doc.id)
|
||||||
|
|
||||||
def test_custom_field_select_filter(self) -> None:
|
def test_custom_field_select_filter(self) -> None:
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
@@ -1156,6 +1215,91 @@ class TestDocumentApi(DirectoriesMixin, ConsumeTaskMixin, APITestCase):
|
|||||||
[u1_doc1.id],
|
[u1_doc1.id],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_document_owned_and_group_shared_not_duplicated_when_filtering_by_tags(
|
||||||
|
self,
|
||||||
|
) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- A document owned by a user and also shared with a group the user belongs to
|
||||||
|
WHEN:
|
||||||
|
- The user filters documents by more than one tag (tags__id__all)
|
||||||
|
THEN:
|
||||||
|
- The document is returned exactly once, not once per permission path
|
||||||
|
(regression test for https://github.com/paperless-ngx/paperless-ngx/issues/13331)
|
||||||
|
"""
|
||||||
|
user = User.objects.create_user("user1")
|
||||||
|
user.user_permissions.add(*Permission.objects.filter(codename="view_document"))
|
||||||
|
group = Group.objects.create(name="group1")
|
||||||
|
user.groups.add(group)
|
||||||
|
|
||||||
|
tag1 = TagFactory()
|
||||||
|
tag2 = TagFactory()
|
||||||
|
doc = DocumentFactory(title="shared", owner=user)
|
||||||
|
doc.tags.add(tag1, tag2)
|
||||||
|
assign_perm("view_document", group, doc)
|
||||||
|
|
||||||
|
self.client.force_authenticate(user=user)
|
||||||
|
response = self.client.get(
|
||||||
|
f"/api/documents/?tags__id__all={tag1.id},{tag2.id}",
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(response.data["count"], 1)
|
||||||
|
self.assertEqual(response.data["results"][0]["id"], doc.id)
|
||||||
|
|
||||||
|
def test_document_permission_filter_excludes_unrelated_documents(self) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- A document owned by one user, with no permission granted to another user
|
||||||
|
WHEN:
|
||||||
|
- The unrelated user requests the document list
|
||||||
|
THEN:
|
||||||
|
- The document does not appear in their results
|
||||||
|
"""
|
||||||
|
owner = User.objects.create_user("owner1")
|
||||||
|
stranger = User.objects.create_user("stranger1")
|
||||||
|
stranger.user_permissions.add(
|
||||||
|
*Permission.objects.filter(codename="view_document"),
|
||||||
|
)
|
||||||
|
|
||||||
|
DocumentFactory(title="private", owner=owner)
|
||||||
|
|
||||||
|
self.client.force_authenticate(user=stranger)
|
||||||
|
response = self.client.get("/api/documents/")
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(response.data["count"], 0)
|
||||||
|
|
||||||
|
def test_document_permission_filter_only_visible_to_group_members(self) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- A document shared with a group via object permissions
|
||||||
|
WHEN:
|
||||||
|
- A group member and a non-member both request the document list
|
||||||
|
THEN:
|
||||||
|
- Only the group member sees the document
|
||||||
|
"""
|
||||||
|
owner = User.objects.create_user("owner2")
|
||||||
|
member = User.objects.create_user("member1")
|
||||||
|
non_member = User.objects.create_user("nonmember1")
|
||||||
|
for u in (member, non_member):
|
||||||
|
u.user_permissions.add(*Permission.objects.filter(codename="view_document"))
|
||||||
|
|
||||||
|
group = Group.objects.create(name="group2")
|
||||||
|
member.groups.add(group)
|
||||||
|
|
||||||
|
doc = DocumentFactory(title="shared2", owner=owner)
|
||||||
|
assign_perm("view_document", group, doc)
|
||||||
|
|
||||||
|
self.client.force_authenticate(user=member)
|
||||||
|
response = self.client.get("/api/documents/")
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(response.data["count"], 1)
|
||||||
|
self.assertEqual(response.data["results"][0]["id"], doc.id)
|
||||||
|
|
||||||
|
self.client.force_authenticate(user=non_member)
|
||||||
|
response = self.client.get("/api/documents/")
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(response.data["count"], 0)
|
||||||
|
|
||||||
def test_pagination_results(self) -> None:
|
def test_pagination_results(self) -> None:
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
@@ -1291,6 +1435,63 @@ class TestDocumentApi(DirectoriesMixin, ConsumeTaskMixin, APITestCase):
|
|||||||
self.assertEqual(selected_type["document_count"], 1)
|
self.assertEqual(selected_type["document_count"], 1)
|
||||||
self.assertEqual(selected_storage_path["document_count"], 1)
|
self.assertEqual(selected_storage_path["document_count"], 1)
|
||||||
|
|
||||||
|
def test_selection_data_document_counts_per_tag(self) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- Multiple tags with different numbers of matching documents
|
||||||
|
within the filtered set, including one with no matches
|
||||||
|
WHEN:
|
||||||
|
- Requesting the document list with include_selection_data=true
|
||||||
|
THEN:
|
||||||
|
- Each tag's document_count reflects only documents in the
|
||||||
|
filtered set, not the instance-wide count
|
||||||
|
"""
|
||||||
|
tag_a = Tag.objects.create(name="a")
|
||||||
|
tag_b = Tag.objects.create(name="b")
|
||||||
|
tag_unused = Tag.objects.create(name="unused")
|
||||||
|
custom_field = CustomField.objects.create(
|
||||||
|
name="cf1",
|
||||||
|
data_type=CustomField.FieldDataType.STRING,
|
||||||
|
)
|
||||||
|
|
||||||
|
doc1 = Document.objects.create(checksum="1", correspondent=None)
|
||||||
|
doc1.tags.add(tag_a)
|
||||||
|
doc2 = Document.objects.create(checksum="2")
|
||||||
|
doc2.tags.add(tag_a, tag_b)
|
||||||
|
doc3 = Document.objects.create(checksum="3")
|
||||||
|
doc3.tags.add(tag_b)
|
||||||
|
CustomFieldInstance.objects.create(
|
||||||
|
document=doc1,
|
||||||
|
field=custom_field,
|
||||||
|
value_text="x",
|
||||||
|
)
|
||||||
|
|
||||||
|
# Excluded from the filtered set entirely.
|
||||||
|
excluded = Document.objects.create(checksum="4")
|
||||||
|
excluded.tags.add(tag_a, tag_b, tag_unused)
|
||||||
|
|
||||||
|
response = self.client.get(
|
||||||
|
f"/api/documents/?id__in={doc1.id},{doc2.id},{doc3.id}"
|
||||||
|
"&include_selection_data=true",
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
selection_data = response.data["selection_data"]
|
||||||
|
|
||||||
|
counts_by_tag = {
|
||||||
|
item["id"]: item["document_count"]
|
||||||
|
for item in selection_data["selected_tags"]
|
||||||
|
}
|
||||||
|
self.assertEqual(counts_by_tag[tag_a.id], 2)
|
||||||
|
self.assertEqual(counts_by_tag[tag_b.id], 2)
|
||||||
|
self.assertEqual(counts_by_tag[tag_unused.id], 0)
|
||||||
|
|
||||||
|
counts_by_field = {
|
||||||
|
item["id"]: item["document_count"]
|
||||||
|
for item in selection_data["selected_custom_fields"]
|
||||||
|
}
|
||||||
|
self.assertEqual(counts_by_field[custom_field.id], 1)
|
||||||
|
|
||||||
def test_statistics(self) -> None:
|
def test_statistics(self) -> None:
|
||||||
doc1 = Document.objects.create(
|
doc1 = Document.objects.create(
|
||||||
title="none1",
|
title="none1",
|
||||||
|
|||||||
@@ -568,6 +568,30 @@ class TestApiAuth(DirectoriesMixin, APITestCase):
|
|||||||
self.assertNotIn("user_can_change", results[0])
|
self.assertNotIn("user_can_change", results[0])
|
||||||
self.assertNotIn("is_shared_by_requester", results[0])
|
self.assertNotIn("is_shared_by_requester", results[0])
|
||||||
|
|
||||||
|
def test_superuser_user_can_change_without_explicit_grant(self) -> None:
|
||||||
|
"""
|
||||||
|
A superuser has implicit change access to every document, even one
|
||||||
|
owned by someone else with no explicit guardian grant -- mirrors
|
||||||
|
guardian's own ObjectPermissionChecker.has_perm() superuser shortcut.
|
||||||
|
"""
|
||||||
|
superuser = User.objects.create_superuser(username="admin")
|
||||||
|
other_user = User.objects.create_user(username="user2")
|
||||||
|
Document.objects.create(
|
||||||
|
title="Test",
|
||||||
|
content="content",
|
||||||
|
checksum="1",
|
||||||
|
owner=other_user,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.client.force_authenticate(superuser)
|
||||||
|
|
||||||
|
response = self.client.get("/api/documents/", format="json")
|
||||||
|
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
results = response.json()["results"]
|
||||||
|
self.assertEqual(len(results), 1)
|
||||||
|
self.assertTrue(results[0]["user_can_change"])
|
||||||
|
|
||||||
@mock.patch("allauth.mfa.adapter.DefaultMFAAdapter.is_mfa_enabled")
|
@mock.patch("allauth.mfa.adapter.DefaultMFAAdapter.is_mfa_enabled")
|
||||||
def test_basic_auth_mfa_enabled(self, mock_is_mfa_enabled) -> None:
|
def test_basic_auth_mfa_enabled(self, mock_is_mfa_enabled) -> None:
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -166,24 +166,28 @@ class TestShouldProduceArchive:
|
|||||||
mocker: MockerFixture,
|
mocker: MockerFixture,
|
||||||
settings,
|
settings,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Tagged PDFs (e.g. Word exports) are treated as born-digital regardless of text length."""
|
"""Tagged PDFs (e.g. Word exports) with real text are treated as born-digital, even below PDF_TEXT_MIN_LENGTH."""
|
||||||
settings.ARCHIVE_FILE_GENERATION = "auto"
|
settings.ARCHIVE_FILE_GENERATION = "auto"
|
||||||
mocker.patch("documents.consumer.is_tagged_pdf", return_value=True)
|
mocker.patch("documents.consumer.is_tagged_pdf", return_value=True)
|
||||||
|
mocker.patch("documents.consumer.extract_pdf_text", return_value="tiny")
|
||||||
parser = _parser_instance(can_produce=True, requires_rendition=False)
|
parser = _parser_instance(can_produce=True, requires_rendition=False)
|
||||||
assert (
|
assert (
|
||||||
should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
|
should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
|
||||||
is False
|
is False
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_tagged_pdf_does_not_call_pdftotext(
|
def test_tagged_pdf_without_text_produces_archive(
|
||||||
self,
|
self,
|
||||||
mocker: MockerFixture,
|
mocker: MockerFixture,
|
||||||
settings,
|
settings,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""When a PDF is tagged, pdftotext is not invoked (fast path)."""
|
"""A tagged PDF with no actual extractable text (e.g. some scanner firmware) is not
|
||||||
|
trusted as born-digital — the tag alone must not bypass OCR."""
|
||||||
settings.ARCHIVE_FILE_GENERATION = "auto"
|
settings.ARCHIVE_FILE_GENERATION = "auto"
|
||||||
mocker.patch("documents.consumer.is_tagged_pdf", return_value=True)
|
mocker.patch("documents.consumer.is_tagged_pdf", return_value=True)
|
||||||
mock_extract = mocker.patch("documents.consumer.extract_pdf_text")
|
mocker.patch("documents.consumer.extract_pdf_text", return_value=None)
|
||||||
parser = _parser_instance(can_produce=True, requires_rendition=False)
|
parser = _parser_instance(can_produce=True, requires_rendition=False)
|
||||||
should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
|
assert (
|
||||||
mock_extract.assert_not_called()
|
should_produce_archive(parser, "application/pdf", Path("/tmp/doc.pdf"))
|
||||||
|
is True
|
||||||
|
)
|
||||||
|
|||||||
@@ -401,6 +401,10 @@ class TestAIIndex(DirectoriesMixin, TestCase):
|
|||||||
"documents.tasks.update_llm_index",
|
"documents.tasks.update_llm_index",
|
||||||
) as update_llm_index,
|
) as update_llm_index,
|
||||||
):
|
):
|
||||||
tasks.bulk_update_documents([doc.pk for doc in docs])
|
doc_ids = [doc.pk for doc in docs]
|
||||||
|
tasks.bulk_update_documents(doc_ids)
|
||||||
self.assertEqual(update_document_in_llm_index.apply_async.call_count, 0)
|
self.assertEqual(update_document_in_llm_index.apply_async.call_count, 0)
|
||||||
update_llm_index.assert_called_once()
|
update_llm_index.assert_called_once_with(
|
||||||
|
rebuild=False,
|
||||||
|
document_ids=doc_ids,
|
||||||
|
)
|
||||||
|
|||||||
@@ -625,6 +625,37 @@ class TestAIChatStreamingView(DirectoriesMixin, TestCase):
|
|||||||
)
|
)
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
self.assertEqual(response["Content-Type"], "text/event-stream")
|
self.assertEqual(response["Content-Type"], "text/event-stream")
|
||||||
|
mock_stream_chat.assert_called_once_with(
|
||||||
|
query_str="question",
|
||||||
|
documents=[self.document],
|
||||||
|
output_language=None,
|
||||||
|
)
|
||||||
|
|
||||||
|
@patch("documents.views.stream_chat_with_documents")
|
||||||
|
@patch("documents.views.get_objects_for_user_owner_aware")
|
||||||
|
@override_settings(AI_ENABLED=True)
|
||||||
|
def test_post_uses_user_display_language(
|
||||||
|
self,
|
||||||
|
mock_get_objects,
|
||||||
|
mock_stream_chat,
|
||||||
|
) -> None:
|
||||||
|
UiSettings.objects.create(user=self.user, settings={"language": "de-de"})
|
||||||
|
self.grant_view_document_permission()
|
||||||
|
mock_get_objects.return_value = [self.document]
|
||||||
|
mock_stream_chat.return_value = iter([b"data"])
|
||||||
|
|
||||||
|
response = self.client.post(
|
||||||
|
self.ENDPOINT,
|
||||||
|
data='{"q": "question"}',
|
||||||
|
content_type="application/json",
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
mock_stream_chat.assert_called_once_with(
|
||||||
|
query_str="question",
|
||||||
|
documents=[self.document],
|
||||||
|
output_language="de-de",
|
||||||
|
)
|
||||||
|
|
||||||
@patch("documents.views.stream_chat_with_documents")
|
@patch("documents.views.stream_chat_with_documents")
|
||||||
@override_settings(AI_ENABLED=True)
|
@override_settings(AI_ENABLED=True)
|
||||||
|
|||||||
+95
-42
@@ -133,6 +133,7 @@ from documents.file_handling import format_filename
|
|||||||
from documents.filters import CorrespondentFilterSet
|
from documents.filters import CorrespondentFilterSet
|
||||||
from documents.filters import CustomFieldFilterSet
|
from documents.filters import CustomFieldFilterSet
|
||||||
from documents.filters import DocumentFilterSet
|
from documents.filters import DocumentFilterSet
|
||||||
|
from documents.filters import DocumentPermissionsFilter
|
||||||
from documents.filters import DocumentsOrderingFilter
|
from documents.filters import DocumentsOrderingFilter
|
||||||
from documents.filters import DocumentTypeFilterSet
|
from documents.filters import DocumentTypeFilterSet
|
||||||
from documents.filters import ObjectOwnedOrGrantedPermissionsFilter
|
from documents.filters import ObjectOwnedOrGrantedPermissionsFilter
|
||||||
@@ -169,6 +170,7 @@ from documents.permissions import PaperlessAdminPermissions
|
|||||||
from documents.permissions import PaperlessNotePermissions
|
from documents.permissions import PaperlessNotePermissions
|
||||||
from documents.permissions import PaperlessObjectPermissions
|
from documents.permissions import PaperlessObjectPermissions
|
||||||
from documents.permissions import ViewDocumentsPermissions
|
from documents.permissions import ViewDocumentsPermissions
|
||||||
|
from documents.permissions import annotate_document_count_by_ids
|
||||||
from documents.permissions import annotate_document_count_for_related_queryset
|
from documents.permissions import annotate_document_count_for_related_queryset
|
||||||
from documents.permissions import get_document_count_filter_for_user
|
from documents.permissions import get_document_count_filter_for_user
|
||||||
from documents.permissions import get_objects_for_user_owner_aware
|
from documents.permissions import get_objects_for_user_owner_aware
|
||||||
@@ -431,14 +433,12 @@ class BulkPermissionMixin:
|
|||||||
This avoid fetching permissions object by object in database.
|
This avoid fetching permissions object by object in database.
|
||||||
"""
|
"""
|
||||||
context = super().get_serializer_context()
|
context = super().get_serializer_context()
|
||||||
try:
|
|
||||||
full_perms = get_boolean(
|
|
||||||
str(self.request.query_params.get("full_perms", "false")),
|
|
||||||
)
|
|
||||||
except ValueError:
|
|
||||||
full_perms = False
|
|
||||||
|
|
||||||
if not full_perms:
|
if getattr(self, "action", None) != "list":
|
||||||
|
# Batching only pays off across a page of objects; for single-object
|
||||||
|
# actions (retrieve, update, ...) the per-object fallback in
|
||||||
|
# get_user_can_change()/_get_perms() is cheap and avoids scanning
|
||||||
|
# the whole queryset here.
|
||||||
return context
|
return context
|
||||||
|
|
||||||
# Check which objects are being paginated
|
# Check which objects are being paginated
|
||||||
@@ -484,7 +484,15 @@ class BulkPermissionMixin:
|
|||||||
class PermissionsAwareDocumentCountMixin(BulkPermissionMixin, PassUserMixin):
|
class PermissionsAwareDocumentCountMixin(BulkPermissionMixin, PassUserMixin):
|
||||||
"""Mixin to add document count to queryset, permissions-aware if needed"""
|
"""Mixin to add document count to queryset, permissions-aware if needed"""
|
||||||
|
|
||||||
# Default is simple relation path, override for through-table/count specialization.
|
# Direct FK/M2M relation name from this model to Document, used for the
|
||||||
|
# cheap Count(filter=...) path (Correspondent, DocumentType, StoragePath).
|
||||||
|
document_count_related_name: str = "documents"
|
||||||
|
|
||||||
|
# Set both of these instead, for models that only reach Document through
|
||||||
|
# an M2M/through-model table (Tag, CustomField). A plain Count(filter=...)
|
||||||
|
# over such a relation is fine for a direct FK, but forces a much more
|
||||||
|
# expensive plan once an M2M bridge table is involved -- see
|
||||||
|
# annotate_document_count_for_related_queryset() for why.
|
||||||
document_count_through: type[Model] | None = None
|
document_count_through: type[Model] | None = None
|
||||||
document_count_source_field: str | None = None
|
document_count_source_field: str | None = None
|
||||||
|
|
||||||
@@ -500,12 +508,14 @@ class PermissionsAwareDocumentCountMixin(BulkPermissionMixin, PassUserMixin):
|
|||||||
def get_document_count_filter(self):
|
def get_document_count_filter(self):
|
||||||
request = getattr(self, "request", None)
|
request = getattr(self, "request", None)
|
||||||
user = getattr(request, "user", None) if request else None
|
user = getattr(request, "user", None) if request else None
|
||||||
return get_document_count_filter_for_user(user)
|
return get_document_count_filter_for_user(
|
||||||
|
user,
|
||||||
|
related_name=self.document_count_related_name,
|
||||||
|
)
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
base_qs = super().get_queryset()
|
base_qs = super().get_queryset()
|
||||||
|
|
||||||
# Use optimized through-table counting when configured.
|
|
||||||
if self.document_count_through:
|
if self.document_count_through:
|
||||||
user = getattr(getattr(self, "request", None), "user", None)
|
user = getattr(getattr(self, "request", None), "user", None)
|
||||||
return annotate_document_count_for_related_queryset(
|
return annotate_document_count_for_related_queryset(
|
||||||
@@ -515,10 +525,13 @@ class PermissionsAwareDocumentCountMixin(BulkPermissionMixin, PassUserMixin):
|
|||||||
user=user,
|
user=user,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Fallback: simple Count on relation with permission filter.
|
|
||||||
filter = self.get_document_count_filter()
|
filter = self.get_document_count_filter()
|
||||||
return base_qs.annotate(
|
return base_qs.annotate(
|
||||||
document_count=Count("documents", filter=filter),
|
document_count=Count(
|
||||||
|
self.document_count_related_name,
|
||||||
|
filter=filter,
|
||||||
|
distinct=True,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -641,6 +654,20 @@ class TagViewSet(PermissionsAwareDocumentCountMixin, ModelViewSet[Tag]):
|
|||||||
update_document_parent_tags(tag, new_parent)
|
update_document_parent_tags(tag, new_parent)
|
||||||
|
|
||||||
|
|
||||||
|
def _get_llm_output_language(ai_config: AIConfig, request) -> str | None:
|
||||||
|
output_language = ai_config.llm_output_language
|
||||||
|
if (
|
||||||
|
not output_language
|
||||||
|
and hasattr(request.user, "ui_settings")
|
||||||
|
and isinstance(
|
||||||
|
request.user.ui_settings.settings,
|
||||||
|
dict,
|
||||||
|
)
|
||||||
|
):
|
||||||
|
output_language = request.user.ui_settings.settings.get("language")
|
||||||
|
return output_language
|
||||||
|
|
||||||
|
|
||||||
@extend_schema_view(**generate_object_with_permissions_schema(DocumentTypeSerializer))
|
@extend_schema_view(**generate_object_with_permissions_schema(DocumentTypeSerializer))
|
||||||
class DocumentTypeViewSet(
|
class DocumentTypeViewSet(
|
||||||
PermissionsAwareDocumentCountMixin,
|
PermissionsAwareDocumentCountMixin,
|
||||||
@@ -943,6 +970,7 @@ class EmailDocumentDetailSchema(EmailSerializer):
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
class DocumentViewSet(
|
class DocumentViewSet(
|
||||||
|
BulkPermissionMixin,
|
||||||
PassUserMixin,
|
PassUserMixin,
|
||||||
RetrieveModelMixin,
|
RetrieveModelMixin,
|
||||||
UpdateModelMixin,
|
UpdateModelMixin,
|
||||||
@@ -959,7 +987,7 @@ class DocumentViewSet(
|
|||||||
DjangoFilterBackend,
|
DjangoFilterBackend,
|
||||||
SearchFilter,
|
SearchFilter,
|
||||||
DocumentsOrderingFilter,
|
DocumentsOrderingFilter,
|
||||||
ObjectOwnedOrGrantedPermissionsFilter,
|
DocumentPermissionsFilter,
|
||||||
)
|
)
|
||||||
filterset_class = DocumentFilterSet
|
filterset_class = DocumentFilterSet
|
||||||
search_fields = ("title", "correspondent__name", "effective_content")
|
search_fields = ("title", "correspondent__name", "effective_content")
|
||||||
@@ -980,42 +1008,54 @@ class DocumentViewSet(
|
|||||||
)
|
)
|
||||||
|
|
||||||
def _get_selection_data_for_queryset(self, queryset):
|
def _get_selection_data_for_queryset(self, queryset):
|
||||||
|
# Resolve once instead of once per model below. `queryset` can carry an
|
||||||
|
# arbitrarily expensive WHERE clause (user filters plus the permission
|
||||||
|
# filter); re-embedding it as a subquery inside 5 separate Count(...)
|
||||||
|
# calls forces the database to re-evaluate that whole thing 5 times, and
|
||||||
|
# -- for FK relations especially -- can defeat semi-join planning
|
||||||
|
# entirely at scale. A concrete id list is cheap to reuse.
|
||||||
|
# order_by() drops the default/user ordering -- irrelevant for a plain
|
||||||
|
# id list, but left in place it forces a sort over the full filtered
|
||||||
|
# set before the ids can even be collected.
|
||||||
|
document_ids = list(queryset.order_by().values_list("pk", flat=True))
|
||||||
|
|
||||||
correspondents = Correspondent.objects.annotate(
|
correspondents = Correspondent.objects.annotate(
|
||||||
document_count=Count(
|
document_count=Count(
|
||||||
"documents",
|
"documents",
|
||||||
filter=Q(documents__in=queryset),
|
filter=Q(documents__id__in=document_ids),
|
||||||
distinct=True,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
tags = Tag.objects.annotate(
|
|
||||||
document_count=Count(
|
|
||||||
"documents",
|
|
||||||
filter=Q(documents__in=queryset),
|
|
||||||
distinct=True,
|
distinct=True,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
document_types = DocumentType.objects.annotate(
|
document_types = DocumentType.objects.annotate(
|
||||||
document_count=Count(
|
document_count=Count(
|
||||||
"documents",
|
"documents",
|
||||||
filter=Q(documents__in=queryset),
|
filter=Q(documents__id__in=document_ids),
|
||||||
distinct=True,
|
distinct=True,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
storage_paths = StoragePath.objects.annotate(
|
storage_paths = StoragePath.objects.annotate(
|
||||||
document_count=Count(
|
document_count=Count(
|
||||||
"documents",
|
"documents",
|
||||||
filter=Q(documents__in=queryset),
|
filter=Q(documents__id__in=document_ids),
|
||||||
distinct=True,
|
distinct=True,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
custom_fields = CustomField.objects.annotate(
|
# Tag and CustomField reach Document through an M2M/through-model table;
|
||||||
document_count=Count(
|
# a plain Count(filter=...) there is a much more expensive plan than the
|
||||||
"fields__document",
|
# FK relations above once the bridge table is large -- see
|
||||||
filter=Q(fields__document__in=queryset),
|
# annotate_document_count_by_ids() for why.
|
||||||
distinct=True,
|
tags = annotate_document_count_by_ids(
|
||||||
),
|
Tag.objects.all(),
|
||||||
|
through_model=Document.tags.through,
|
||||||
|
related_object_field="tag_id",
|
||||||
|
document_ids=document_ids,
|
||||||
|
)
|
||||||
|
custom_fields = annotate_document_count_by_ids(
|
||||||
|
CustomField.objects.all(),
|
||||||
|
through_model=CustomFieldInstance,
|
||||||
|
related_object_field="field_id",
|
||||||
|
document_ids=document_ids,
|
||||||
)
|
)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"selected_correspondents": [
|
"selected_correspondents": [
|
||||||
{"id": t.id, "document_count": t.document_count} for t in correspondents
|
{"id": t.id, "document_count": t.document_count} for t in correspondents
|
||||||
@@ -1051,9 +1091,16 @@ class DocumentViewSet(
|
|||||||
.values("count"),
|
.values("count"),
|
||||||
output_field=IntegerField(),
|
output_field=IntegerField(),
|
||||||
)
|
)
|
||||||
|
# No .distinct() here: nothing in this base queryset can produce
|
||||||
|
# duplicate document rows (select_related below is all FK-to-PK;
|
||||||
|
# permission filtering is a boolean id__in predicate, not a join).
|
||||||
|
# M2M-based filters that *do* introduce a join (e.g. tags__id__in)
|
||||||
|
# already call .distinct() themselves where they need it -- see
|
||||||
|
# ObjectFilter.filter(). A blanket .distinct() here forces the
|
||||||
|
# database to fully sort and dedupe every visible document before
|
||||||
|
# it can apply LIMIT, which is disastrous at scale.
|
||||||
return (
|
return (
|
||||||
Document.objects.filter(root_document__isnull=True)
|
Document.objects.filter(root_document__isnull=True)
|
||||||
.distinct()
|
|
||||||
.order_by("-created", "-id")
|
.order_by("-created", "-id")
|
||||||
.annotate(effective_content=Coalesce(latest_version_content, F("content")))
|
.annotate(effective_content=Coalesce(latest_version_content, F("content")))
|
||||||
.annotate(num_notes=Coalesce(note_count, 0))
|
.annotate(num_notes=Coalesce(note_count, 0))
|
||||||
@@ -1482,16 +1529,7 @@ class DocumentViewSet(
|
|||||||
if not ai_config.ai_enabled:
|
if not ai_config.ai_enabled:
|
||||||
return HttpResponseBadRequest("AI is required for this feature")
|
return HttpResponseBadRequest("AI is required for this feature")
|
||||||
|
|
||||||
output_language = ai_config.llm_output_language
|
output_language = _get_llm_output_language(ai_config=ai_config, request=request)
|
||||||
if (
|
|
||||||
not output_language
|
|
||||||
and hasattr(request.user, "ui_settings")
|
|
||||||
and isinstance(
|
|
||||||
request.user.ui_settings.settings,
|
|
||||||
dict,
|
|
||||||
)
|
|
||||||
):
|
|
||||||
output_language = request.user.ui_settings.settings.get("language") or None
|
|
||||||
llm_cache_backend = (
|
llm_cache_backend = (
|
||||||
f"{ai_config.llm_backend}:{output_language}"
|
f"{ai_config.llm_backend}:{output_language}"
|
||||||
if output_language
|
if output_language
|
||||||
@@ -2233,8 +2271,14 @@ class ChatStreamingView(GenericAPIView[Any]):
|
|||||||
Document,
|
Document,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
output_language = _get_llm_output_language(ai_config=ai_config, request=request)
|
||||||
|
|
||||||
response = StreamingHttpResponse(
|
response = StreamingHttpResponse(
|
||||||
stream_chat_with_documents(query_str=question, documents=documents),
|
stream_chat_with_documents(
|
||||||
|
query_str=question,
|
||||||
|
documents=documents,
|
||||||
|
output_language=output_language,
|
||||||
|
),
|
||||||
content_type="text/event-stream",
|
content_type="text/event-stream",
|
||||||
)
|
)
|
||||||
return response
|
return response
|
||||||
@@ -2291,6 +2335,15 @@ class UnifiedSearchViewSet(DocumentViewSet):
|
|||||||
return SearchResultSerializer
|
return SearchResultSerializer
|
||||||
return DocumentSerializer
|
return DocumentSerializer
|
||||||
|
|
||||||
|
def get_serializer_context(self):
|
||||||
|
if self._is_search_request():
|
||||||
|
# BulkPermissionMixin.get_serializer_context() (inherited via
|
||||||
|
# DocumentViewSet) assumes it's batching permissions for a page of
|
||||||
|
# real Document instances. Tantivy search results are SearchHit/
|
||||||
|
# dict-like objects instead, so skip straight past it here.
|
||||||
|
return super(BulkPermissionMixin, self).get_serializer_context()
|
||||||
|
return super().get_serializer_context()
|
||||||
|
|
||||||
def _get_active_search_params(self, request: Request | None = None) -> list[str]:
|
def _get_active_search_params(self, request: Request | None = None) -> list[str]:
|
||||||
request = request or self.request
|
request = request or self.request
|
||||||
return [
|
return [
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: paperless-ngx\n"
|
"Project-Id-Version: paperless-ngx\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-07-22 15:44+0000\n"
|
"POT-Creation-Date: 2026-07-27 19:34+0000\n"
|
||||||
"PO-Revision-Date: 2026-07-22 15:47\n"
|
"PO-Revision-Date: 2026-07-27 19:35\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"Language: af_ZA\n"
|
"Language: af_ZA\n"
|
||||||
@@ -21,39 +21,39 @@ msgstr ""
|
|||||||
msgid "Documents"
|
msgid "Documents"
|
||||||
msgstr "Dokumente"
|
msgstr "Dokumente"
|
||||||
|
|
||||||
#: documents/filters.py:464
|
#: documents/filters.py:472
|
||||||
msgid "Value must be valid JSON."
|
msgid "Value must be valid JSON."
|
||||||
msgstr "Waarde moet geldige JSON wees."
|
msgstr "Waarde moet geldige JSON wees."
|
||||||
|
|
||||||
#: documents/filters.py:483
|
#: documents/filters.py:491
|
||||||
msgid "Invalid custom field query expression"
|
msgid "Invalid custom field query expression"
|
||||||
msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking"
|
msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking"
|
||||||
|
|
||||||
#: documents/filters.py:493
|
#: documents/filters.py:501
|
||||||
msgid "Invalid expression list. Must be nonempty."
|
msgid "Invalid expression list. Must be nonempty."
|
||||||
msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie."
|
msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie."
|
||||||
|
|
||||||
#: documents/filters.py:514
|
#: documents/filters.py:522
|
||||||
msgid "Invalid logical operator {op!r}"
|
msgid "Invalid logical operator {op!r}"
|
||||||
msgstr "Ongeldige logiese uitdrukking {op!r}"
|
msgstr "Ongeldige logiese uitdrukking {op!r}"
|
||||||
|
|
||||||
#: documents/filters.py:528
|
#: documents/filters.py:536
|
||||||
msgid "Maximum number of query conditions exceeded."
|
msgid "Maximum number of query conditions exceeded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/filters.py:592
|
#: documents/filters.py:600
|
||||||
msgid "{name!r} is not a valid custom field."
|
msgid "{name!r} is not a valid custom field."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/filters.py:629
|
#: documents/filters.py:637
|
||||||
msgid "{data_type} does not support query expr {expr!r}."
|
msgid "{data_type} does not support query expr {expr!r}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/filters.py:744 documents/models.py:136
|
#: documents/filters.py:752 documents/models.py:136
|
||||||
msgid "Maximum nesting depth exceeded."
|
msgid "Maximum nesting depth exceeded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/filters.py:1061
|
#: documents/filters.py:1094
|
||||||
msgid "Custom field not found"
|
msgid "Custom field not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1338,48 +1338,48 @@ msgstr ""
|
|||||||
msgid "workflow runs"
|
msgid "workflow runs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:503 documents/serialisers.py:855
|
#: documents/serialisers.py:522 documents/serialisers.py:874
|
||||||
#: documents/serialisers.py:2744 documents/views.py:297 documents/views.py:2500
|
#: documents/serialisers.py:2763 documents/views.py:299 documents/views.py:2553
|
||||||
#: paperless_mail/serialisers.py:155
|
#: paperless_mail/serialisers.py:155
|
||||||
msgid "Insufficient permissions."
|
msgid "Insufficient permissions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:691
|
#: documents/serialisers.py:710
|
||||||
msgid "Invalid color."
|
msgid "Invalid color."
|
||||||
msgstr "Ongeldige kleur."
|
msgstr "Ongeldige kleur."
|
||||||
|
|
||||||
#: documents/serialisers.py:2216
|
#: documents/serialisers.py:2235
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "File type %(type)s not supported"
|
msgid "File type %(type)s not supported"
|
||||||
msgstr "Lêertipe %(type)s word nie ondersteun nie"
|
msgstr "Lêertipe %(type)s word nie ondersteun nie"
|
||||||
|
|
||||||
#: documents/serialisers.py:2260
|
#: documents/serialisers.py:2279
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Custom field id must be an integer: %(id)s"
|
msgid "Custom field id must be an integer: %(id)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:2267
|
#: documents/serialisers.py:2286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Custom field with id %(id)s does not exist"
|
msgid "Custom field with id %(id)s does not exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:2284 documents/serialisers.py:2294
|
#: documents/serialisers.py:2303 documents/serialisers.py:2313
|
||||||
msgid "Custom fields must be a list of integers or an object mapping ids to values."
|
msgid "Custom fields must be a list of integers or an object mapping ids to values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:2289
|
#: documents/serialisers.py:2308
|
||||||
msgid "Some custom fields don't exist or were specified twice."
|
msgid "Some custom fields don't exist or were specified twice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:2436
|
#: documents/serialisers.py:2455
|
||||||
msgid "Invalid variable detected."
|
msgid "Invalid variable detected."
|
||||||
msgstr "Ongeldige veranderlike bespeur."
|
msgstr "Ongeldige veranderlike bespeur."
|
||||||
|
|
||||||
#: documents/serialisers.py:2800
|
#: documents/serialisers.py:2819
|
||||||
msgid "Duplicate document identifiers are not allowed."
|
msgid "Duplicate document identifiers are not allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/serialisers.py:2830 documents/views.py:4459
|
#: documents/serialisers.py:2849 documents/views.py:4512
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Documents not found: %(ids)s"
|
msgid "Documents not found: %(ids)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1634,36 +1634,36 @@ msgstr ""
|
|||||||
msgid "Unable to parse URI {value}"
|
msgid "Unable to parse URI {value}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:290 documents/views.py:2497
|
#: documents/views.py:292 documents/views.py:2550
|
||||||
msgid "Invalid more_like_id"
|
msgid "Invalid more_like_id"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:1524
|
#: documents/views.py:1562
|
||||||
msgid "Invalid AI configuration."
|
msgid "Invalid AI configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:1533
|
#: documents/views.py:1571
|
||||||
msgid "AI backend request timed out."
|
msgid "AI backend request timed out."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:2322 documents/views.py:2643
|
#: documents/views.py:2375 documents/views.py:2696
|
||||||
msgid "Specify only one of text, title_search, query, or more_like_id."
|
msgid "Specify only one of text, title_search, query, or more_like_id."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:4471
|
#: documents/views.py:4524
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Insufficient permissions to share document %(id)s."
|
msgid "Insufficient permissions to share document %(id)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:4517
|
#: documents/views.py:4570
|
||||||
msgid "Bundle is already being processed."
|
msgid "Bundle is already being processed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:4578
|
#: documents/views.py:4631
|
||||||
msgid "The share link bundle is still being prepared. Please try again later."
|
msgid "The share link bundle is still being prepared. Please try again later."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: documents/views.py:4588
|
#: documents/views.py:4641
|
||||||
msgid "The share link bundle is unavailable."
|
msgid "The share link bundle is unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1919,151 +1919,151 @@ msgstr ""
|
|||||||
msgid "paperless application settings"
|
msgid "paperless application settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:545
|
#: paperless/settings/__init__.py:556
|
||||||
msgid "English (US)"
|
msgid "English (US)"
|
||||||
msgstr "Engels (VS)"
|
msgstr "Engels (VS)"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:546
|
#: paperless/settings/__init__.py:557
|
||||||
msgid "Arabic"
|
msgid "Arabic"
|
||||||
msgstr "Arabies"
|
msgstr "Arabies"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:547
|
#: paperless/settings/__init__.py:558
|
||||||
msgid "Afrikaans"
|
msgid "Afrikaans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:548
|
#: paperless/settings/__init__.py:559
|
||||||
msgid "Belarusian"
|
msgid "Belarusian"
|
||||||
msgstr "Belorussies"
|
msgstr "Belorussies"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:549
|
#: paperless/settings/__init__.py:560
|
||||||
msgid "Bulgarian"
|
msgid "Bulgarian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:550
|
#: paperless/settings/__init__.py:561
|
||||||
msgid "Catalan"
|
msgid "Catalan"
|
||||||
msgstr "Katalaans"
|
msgstr "Katalaans"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:551
|
#: paperless/settings/__init__.py:562
|
||||||
msgid "Czech"
|
msgid "Czech"
|
||||||
msgstr "Tsjeggies"
|
msgstr "Tsjeggies"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:552
|
#: paperless/settings/__init__.py:563
|
||||||
msgid "Danish"
|
msgid "Danish"
|
||||||
msgstr "Deens"
|
msgstr "Deens"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:553
|
#: paperless/settings/__init__.py:564
|
||||||
msgid "German"
|
msgid "German"
|
||||||
msgstr "Duits"
|
msgstr "Duits"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:554
|
#: paperless/settings/__init__.py:565
|
||||||
msgid "Greek"
|
msgid "Greek"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:555
|
#: paperless/settings/__init__.py:566
|
||||||
msgid "English (GB)"
|
msgid "English (GB)"
|
||||||
msgstr "Engels (GB)"
|
msgstr "Engels (GB)"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:556
|
#: paperless/settings/__init__.py:567
|
||||||
msgid "Spanish"
|
msgid "Spanish"
|
||||||
msgstr "Spaans"
|
msgstr "Spaans"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:557
|
#: paperless/settings/__init__.py:568
|
||||||
msgid "Persian"
|
msgid "Persian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:558
|
#: paperless/settings/__init__.py:569
|
||||||
msgid "Finnish"
|
msgid "Finnish"
|
||||||
msgstr "Fins"
|
msgstr "Fins"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:559
|
#: paperless/settings/__init__.py:570
|
||||||
msgid "French"
|
msgid "French"
|
||||||
msgstr "Frans"
|
msgstr "Frans"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:560
|
#: paperless/settings/__init__.py:571
|
||||||
msgid "Hungarian"
|
msgid "Hungarian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:561
|
#: paperless/settings/__init__.py:572
|
||||||
msgid "Indonesian"
|
msgid "Indonesian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:562
|
#: paperless/settings/__init__.py:573
|
||||||
msgid "Italian"
|
msgid "Italian"
|
||||||
msgstr "Italiaans"
|
msgstr "Italiaans"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:563
|
#: paperless/settings/__init__.py:574
|
||||||
msgid "Japanese"
|
msgid "Japanese"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:564
|
#: paperless/settings/__init__.py:575
|
||||||
msgid "Korean"
|
msgid "Korean"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:565
|
#: paperless/settings/__init__.py:576
|
||||||
msgid "Luxembourgish"
|
msgid "Luxembourgish"
|
||||||
msgstr "Luxemburgs"
|
msgstr "Luxemburgs"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:566
|
#: paperless/settings/__init__.py:577
|
||||||
msgid "Norwegian"
|
msgid "Norwegian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:567
|
#: paperless/settings/__init__.py:578
|
||||||
msgid "Dutch"
|
msgid "Dutch"
|
||||||
msgstr "Nederlands"
|
msgstr "Nederlands"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:568
|
#: paperless/settings/__init__.py:579
|
||||||
msgid "Polish"
|
msgid "Polish"
|
||||||
msgstr "Pools"
|
msgstr "Pools"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:569
|
#: paperless/settings/__init__.py:580
|
||||||
msgid "Portuguese (Brazil)"
|
msgid "Portuguese (Brazil)"
|
||||||
msgstr "Portugees (Brasilië)"
|
msgstr "Portugees (Brasilië)"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:570
|
#: paperless/settings/__init__.py:581
|
||||||
msgid "Portuguese"
|
msgid "Portuguese"
|
||||||
msgstr "Portugees"
|
msgstr "Portugees"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:571
|
#: paperless/settings/__init__.py:582
|
||||||
msgid "Romanian"
|
msgid "Romanian"
|
||||||
msgstr "Roemeens"
|
msgstr "Roemeens"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:572
|
#: paperless/settings/__init__.py:583
|
||||||
msgid "Russian"
|
msgid "Russian"
|
||||||
msgstr "Russies"
|
msgstr "Russies"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:573
|
#: paperless/settings/__init__.py:584
|
||||||
msgid "Slovak"
|
msgid "Slovak"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:574
|
#: paperless/settings/__init__.py:585
|
||||||
msgid "Slovenian"
|
msgid "Slovenian"
|
||||||
msgstr "Sloweens"
|
msgstr "Sloweens"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:575
|
#: paperless/settings/__init__.py:586
|
||||||
msgid "Serbian"
|
msgid "Serbian"
|
||||||
msgstr "Serwies"
|
msgstr "Serwies"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:576
|
#: paperless/settings/__init__.py:587
|
||||||
msgid "Swedish"
|
msgid "Swedish"
|
||||||
msgstr "Sweeds"
|
msgstr "Sweeds"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:577
|
#: paperless/settings/__init__.py:588
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "Turks"
|
msgstr "Turks"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:578
|
#: paperless/settings/__init__.py:589
|
||||||
msgid "Ukrainian"
|
msgid "Ukrainian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:579
|
#: paperless/settings/__init__.py:590
|
||||||
msgid "Vietnamese"
|
msgid "Vietnamese"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:580
|
#: paperless/settings/__init__.py:591
|
||||||
msgid "Chinese Simplified"
|
msgid "Chinese Simplified"
|
||||||
msgstr "Vereenvoudigde Sjinees"
|
msgstr "Vereenvoudigde Sjinees"
|
||||||
|
|
||||||
#: paperless/settings/__init__.py:581
|
#: paperless/settings/__init__.py:592
|
||||||
msgid "Chinese Traditional"
|
msgid "Chinese Traditional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user