diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh
deleted file mode 100755
index b8687dc56..000000000
--- a/docker/docker-entrypoint.sh
+++ /dev/null
@@ -1,179 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-# Source: https://github.com/sameersbn/docker-gitlab/
-map_uidgid() {
- local -r usermap_original_uid=$(id -u paperless)
- local -r usermap_original_gid=$(id -g paperless)
- local -r usermap_new_uid=${USERMAP_UID:-$usermap_original_uid}
- local -r usermap_new_gid=${USERMAP_GID:-${usermap_original_gid:-$usermap_new_uid}}
- if [[ ${usermap_new_uid} != "${usermap_original_uid}" || ${usermap_new_gid} != "${usermap_original_gid}" ]]; then
- echo "Mapping UID and GID for paperless:paperless to $usermap_new_uid:$usermap_new_gid"
- usermod --non-unique --uid "${usermap_new_uid}" paperless
- groupmod --non-unique --gid "${usermap_new_gid}" paperless
- fi
-}
-
-map_folders() {
- # Export these so they can be used in docker-prepare.sh
- export DATA_DIR="${PAPERLESS_DATA_DIR:-/usr/src/paperless/data}"
- export MEDIA_ROOT_DIR="${PAPERLESS_MEDIA_ROOT:-/usr/src/paperless/media}"
- export CONSUME_DIR="${PAPERLESS_CONSUMPTION_DIR:-/usr/src/paperless/consume}"
-}
-
-custom_container_init() {
- # Mostly borrowed from the LinuxServer.io base image
- # https://github.com/linuxserver/docker-baseimage-ubuntu/tree/bionic/root/etc/cont-init.d
- local -r custom_script_dir="/custom-cont-init.d"
- # Tamper checking.
- # Don't run files which are owned by anyone except root
- # Don't run files which are writeable by others
- if [ -d "${custom_script_dir}" ]; then
- if [ -n "$(/usr/bin/find "${custom_script_dir}" -maxdepth 1 ! -user root)" ]; then
- echo "**** Potential tampering with custom scripts detected ****"
- echo "**** The folder '${custom_script_dir}' must be owned by root ****"
- return 0
- fi
- if [ -n "$(/usr/bin/find "${custom_script_dir}" -maxdepth 1 -perm -o+w)" ]; then
- echo "**** The folder '${custom_script_dir}' or some of contents have write permissions for others, which is a security risk. ****"
- echo "**** Please review the permissions and their contents to make sure they are owned by root, and can only be modified by root. ****"
- return 0
- fi
-
- # Make sure custom init directory has files in it
- if [ -n "$(/bin/ls --almost-all "${custom_script_dir}" 2>/dev/null)" ]; then
- echo "[custom-init] files found in ${custom_script_dir} executing"
- # Loop over files in the directory
- for SCRIPT in "${custom_script_dir}"/*; do
- NAME="$(basename "${SCRIPT}")"
- if [ -f "${SCRIPT}" ]; then
- echo "[custom-init] ${NAME}: executing..."
- /bin/bash "${SCRIPT}"
- echo "[custom-init] ${NAME}: exited $?"
- elif [ ! -f "${SCRIPT}" ]; then
- echo "[custom-init] ${NAME}: is not a file"
- fi
- done
- else
- echo "[custom-init] no custom files found exiting..."
- fi
-
- fi
-}
-
-initialize() {
-
- # Setup environment from secrets before anything else
- # Check for a version of this var with _FILE appended
- # and convert the contents to the env var value
- # Source it so export is persistent
- # shellcheck disable=SC1091
- source /sbin/env-from-file.sh
-
- # Change the user and group IDs if needed
- map_uidgid
-
- # Check for overrides of certain folders
- map_folders
-
- local -r export_dir="/usr/src/paperless/export"
-
- for dir in \
- "${export_dir}" \
- "${DATA_DIR}" "${DATA_DIR}/index" \
- "${MEDIA_ROOT_DIR}" "${MEDIA_ROOT_DIR}/documents" "${MEDIA_ROOT_DIR}/documents/originals" "${MEDIA_ROOT_DIR}/documents/thumbnails" \
- "${CONSUME_DIR}"; do
- if [[ ! -d "${dir}" ]]; then
- echo "Creating directory ${dir}"
- mkdir --parents --verbose "${dir}"
- fi
- done
-
- local -r tmp_dir="${PAPERLESS_SCRATCH_DIR:=/tmp/paperless}"
- echo "Creating directory scratch directory ${tmp_dir}"
- mkdir --parents --verbose "${tmp_dir}"
-
- set +e
- echo "Adjusting permissions of paperless files. This may take a while."
- chown -R paperless:paperless "${tmp_dir}"
- for dir in \
- "${export_dir}" \
- "${DATA_DIR}" \
- "${MEDIA_ROOT_DIR}" \
- "${CONSUME_DIR}"; do
- find "${dir}" -not \( -user paperless -and -group paperless \) -exec chown --changes paperless:paperless {} +
- done
- set -e
-
- "${gosu_cmd[@]}" /sbin/docker-prepare.sh
-
- # Leave this last thing
- custom_container_init
-
-}
-
-install_languages() {
- echo "Installing languages..."
-
- read -ra langs <<<"$1"
-
- # Check that it is not empty
- if [ ${#langs[@]} -eq 0 ]; then
- return
- fi
-
- # Build list of packages to install
- to_install=()
- for lang in "${langs[@]}"; do
- pkg="tesseract-ocr-$lang"
-
- if dpkg --status "$pkg" &>/dev/null; then
- echo "Package $pkg already installed!"
- continue
- else
- to_install+=("$pkg")
- fi
- done
-
- # Use apt only when we install packages
- if [ ${#to_install[@]} -gt 0 ]; then
- apt-get update
-
- for pkg in "${to_install[@]}"; do
-
- if ! apt-cache show "$pkg" &>/dev/null; then
- echo "Skipped $pkg: Package not found! :("
- continue
- fi
-
- echo "Installing package $pkg..."
- if ! apt-get --assume-yes install "$pkg" &>/dev/null; then
- echo "Could not install $pkg"
- exit 1
- fi
- done
- fi
-}
-
-echo "Paperless-ngx docker container starting..."
-
-gosu_cmd=(gosu paperless)
-if [ "$(id --user)" == "$(id --user paperless)" ]; then
- gosu_cmd=()
-fi
-
-# Install additional languages if specified
-if [[ -n "$PAPERLESS_OCR_LANGUAGES" ]]; then
- install_languages "$PAPERLESS_OCR_LANGUAGES"
-fi
-
-initialize
-
-if [[ "$1" != "/"* ]]; then
- echo Executing management command "$@"
- exec "${gosu_cmd[@]}" python3 manage.py "$@"
-else
- echo Executing "$@"
- exec "$@"
-fi
diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-folders/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-folders/run
index 5f731ceae..9f7d58212 100755
--- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-folders/run
+++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-folders/run
@@ -9,25 +9,57 @@ declare -r media_root_dir="${PAPERLESS_MEDIA_ROOT:-/usr/src/paperless/media}"
declare -r consume_dir="${PAPERLESS_CONSUMPTION_DIR:-/usr/src/paperless/consume}"
declare -r tmp_dir="${PAPERLESS_SCRATCH_DIR:=/tmp/paperless}"
-echo "${log_prefix} Checking for folder existence"
+declare -r main_dirs=(
+ "${export_dir}"
+ "${data_dir}"
+ "${media_root_dir}"
+ "${consume_dir}"
+ "${tmp_dir}"
+)
-for dir in \
- "${export_dir}" \
- "${data_dir}" "${data_dir}/index" \
- "${media_root_dir}" "${media_root_dir}/documents" "${media_root_dir}/documents/originals" "${media_root_dir}/documents/thumbnails" \
- "${consume_dir}" \
- "${tmp_dir}"; do
- if [[ ! -d "${dir}" ]]; then
- mkdir --parents --verbose "${dir}"
- fi
-done
+declare -r extra_dirs=(
+ "${main_dirs[@]}"
+ "${data_dir}/index"
+ "${media_root_dir}/documents"
+ "${media_root_dir}/documents/originals"
+ "${media_root_dir}/documents/thumbnails"
+)
-echo "${log_prefix} Adjusting file and folder permissions"
-for dir in \
- "${export_dir}" \
- "${data_dir}" \
- "${media_root_dir}" \
- "${consume_dir}" \
- "${tmp_dir}"; do
- find "${dir}" -not \( -user paperless -and -group paperless \) -exec chown --changes paperless:paperless {} +
-done
+if [[ -n "${USER_IS_NON_ROOT}" ]]; then
+ # Non-root mode: Create directories as current user, warn about permission issues
+ echo "${log_prefix} Running in non-root mode, checking directories"
+ current_uid=$(id --user)
+ current_gid=$(id --group)
+
+ for dir in "${extra_dirs[@]}"; do
+ if [[ ! -d "${dir}" ]]; then
+ mkdir --parents --verbose "${dir}" || echo "${log_prefix} WARNING: Could not create ${dir} - permission denied"
+ fi
+ # Check permissions on existing directories too
+ if [[ -d "${dir}" && ! -w "${dir}" ]]; then
+ echo "${log_prefix} WARNING: No write permission to ${dir}"
+ fi
+ done
+
+ # Warn about ownership issues
+ for dir in "${main_dirs[@]}"; do
+ if [[ -d "${dir}" ]]; then
+ find "${dir}" -not \( -user ${current_uid} -and -group ${current_gid} \) -exec echo "${log_prefix} WARNING: Permission issue on {}: not owned by current user (${current_uid}:${current_gid})" \; 2>/dev/null || echo "${log_prefix} WARNING: Cannot check permissions on ${dir}"
+ fi
+ done
+else
+ # Root mode: Create and fix permissions as needed
+ echo "${log_prefix} Running with root privileges, adjusting directories and permissions"
+
+ # First create directories
+ for dir in "${extra_dirs[@]}"; do
+ if [[ ! -d "${dir}" ]]; then
+ mkdir --parents --verbose "${dir}"
+ fi
+ done
+
+ # Then fix permissions on all directories
+ for dir in "${main_dirs[@]}"; do
+ find "${dir}" -not \( -user paperless -and -group paperless \) -exec chown --changes paperless:paperless {} +
+ done
+fi
diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/migrate.sh b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/migrate.sh
deleted file mode 100755
index 93b45fd06..000000000
--- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/migrate.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/command/with-contenv /usr/bin/bash
-# shellcheck shell=bash
-declare -r data_dir="${PAPERLESS_DATA_DIR:-/usr/src/paperless/data}"
-
-# shellcheck disable=SC2164
-cd "${PAPERLESS_SRC_DIR}"
-exec s6-setlock -n "${data_dir}/migration_lock" python3 manage.py migrate --skip-checks --no-input
diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/run
index 777724886..5d9b45740 100755
--- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/run
+++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-migrations/run
@@ -2,11 +2,17 @@
# shellcheck shell=bash
declare -r log_prefix="[init-migrations]"
+declare -r data_dir="${PAPERLESS_DATA_DIR:-/usr/src/paperless/data}"
+
echo "${log_prefix} Apply database migrations..."
+cd "${PAPERLESS_SRC_DIR}"
+
# The whole migrate, with flock, needs to run as the right user
if [[ -n "${USER_IS_NON_ROOT}" ]]; then
- exec /etc/s6-overlay/s6-rc.d/init-migrations/migrate.sh
+ exec s6-setlock -n "${data_dir}/migration_lock" python3 manage.py migrate --skip-checks --no-input
else
- exec s6-setuidgid paperless /etc/s6-overlay/s6-rc.d/init-migrations/migrate.sh
+ exec s6-setuidgid paperless \
+ s6-setlock -n "${data_dir}/migration_lock" \
+ python3 manage.py migrate --skip-checks --no-input
fi
diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-start/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-start/run
index b6a26fae7..2bc7648d9 100755
--- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-start/run
+++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-start/run
@@ -11,9 +11,10 @@ printf "/usr/src/paperless/src" > /var/run/s6/container_environment/PAPERLESS_SR
echo $(date +%s) > /var/run/s6/container_environment/PAPERLESS_START_TIME_S
# Check if we're starting as a non-root user
-if [ $(id -u) == $(id -u paperless) ]; then
+if [ "$(id --user)" != "0" ]; then
printf "true" > /var/run/s6/container_environment/USER_IS_NON_ROOT
- echo "${log_prefix} paperless-ngx docker container running under a user"
+ echo "${log_prefix} paperless-ngx docker container running under a user ($(id --user):$(id --group))"
else
+ printf "/usr/src/paperless" > /var/run/s6/container_environment/HOME
echo "${log_prefix} paperless-ngx docker container starting init as root"
fi
diff --git a/pyproject.toml b/pyproject.toml
index 07d3cf806..d7fada96e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "paperless-ngx"
-version = "2.15.1"
+version = "2.15.2"
description = "A community-supported supercharged version of paperless: scan, index and archive all your physical documents"
readme = "README.md"
requires-python = ">=3.10"
@@ -16,7 +16,7 @@ classifiers = [
dependencies = [
"bleach~=6.2.0",
- "celery[redis]~=5.4.0",
+ "celery[redis]~=5.5.1",
"channels~=4.2",
"channels-redis~=4.2",
"concurrent-log-handler~=0.9.25",
diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index 7ea6ab923..09876cd98 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -5,14 +5,14 @@
Close
- node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/alert/alert.ts
51
Slide of
- node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
132,136
Currently selected slide number read by screen reader
@@ -20,212 +20,212 @@
Previous
- node_modules/src/carousel/carousel.ts
- 148,149
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 156,160
Next
- node_modules/src/carousel/carousel.ts
- 167,170
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 196,199
Previous month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
77,79
- node_modules/src/datepicker/datepicker-navigation.ts
- 97,98
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
+ 102
Next month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
HH
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Close
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Select month
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Hours
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
MM
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Select year
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Minutes
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Increment hours
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Decrement hours
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Increment minutes
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Decrement minutes
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
SS
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Seconds
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Increment seconds
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Decrement seconds
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
@@ -233,7 +233,7 @@
- node_modules/src/progressbar/progressbar.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/progressbar/progressbar.ts
41,42
@@ -2541,15 +2541,15 @@
src/app/components/document-detail/document-detail.component.ts
- 1323
+ 1327
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3406,7 +3406,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1380
+ 1384
src/app/guards/dirty-saved-view.guard.ts
@@ -7008,49 +7008,49 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1031
+ 1035
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1110
+ 1114
Split confirm
src/app/components/document-detail/document-detail.component.ts
- 1321
+ 1325
This operation will split the selected document(s) into new documents.
src/app/components/document-detail/document-detail.component.ts
- 1322
+ 1326
Split operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1338
+ 1342
Error executing split operation
src/app/components/document-detail/document-detail.component.ts
- 1347
+ 1351
Rotate confirm
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7061,60 +7061,60 @@
This operation will permanently rotate the original version of the current document.
src/app/components/document-detail/document-detail.component.ts
- 1361
+ 1365
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1377
+ 1381
Error executing rotate operation
src/app/components/document-detail/document-detail.component.ts
- 1389
+ 1393
Delete pages confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
This operation will permanently delete the selected pages from the original document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1417
+ 1421
Error executing delete pages operation
src/app/components/document-detail/document-detail.component.ts
- 1426
+ 1430
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1486
+ 1490
src/app/components/document-detail/document-detail.component.ts
- 1490
+ 1494
diff --git a/src-ui/package.json b/src-ui/package.json
index da51097fe..69db245db 100644
--- a/src-ui/package.json
+++ b/src-ui/package.json
@@ -1,6 +1,6 @@
{
- "name": "paperless-ui",
- "version": "0.0.0",
+ "name": "paperless-ngx-ui",
+ "version": "2.15.2",
"scripts": {
"preinstall": "npx only-allow pnpm",
"ng": "ng",
diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.html b/src-ui/src/app/components/app-frame/global-search/global-search.component.html
index 3399b4fad..c8ed0006c 100644
--- a/src-ui/src/app/components/app-frame/global-search/global-search.component.html
+++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.html
@@ -89,7 +89,7 @@
@if (searchResults?.documents.length) {
@for (document of searchResults.documents; track document.id) {
-
+
}
}
@if (searchResults?.saved_views.length) {
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index 578dfd341..36a693d0f 100644
--- a/src-ui/src/environments/environment.prod.ts
+++ b/src-ui/src/environments/environment.prod.ts
@@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '7',
appTitle: 'Paperless-ngx',
- version: '2.15.1',
+ version: '2.15.2',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index ddd0dbe9f..35ef07396 100644
--- a/src-ui/src/locale/messages.af_ZA.xlf
+++ b/src-ui/src/locale/messages.af_ZA.xlf
@@ -5,7 +5,7 @@
Close
- node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/alert/alert.ts
51
Sluit
@@ -13,7 +13,7 @@
Slide of
- node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
132,136
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
- node_modules/src/carousel/carousel.ts
- 148,149
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 156,160
Vorige
Next
- node_modules/src/carousel/carousel.ts
- 167,170
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 196,199
Volgende
Previous month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
77,79
- node_modules/src/datepicker/datepicker-navigation.ts
- 97,98
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
+ 102
Vorige maand
Next month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
Volgende maand
@@ -62,7 +62,7 @@
HH
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Sluit
@@ -78,11 +78,11 @@
Select month
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Kies maand
@@ -90,7 +90,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1323
+ 1327
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3694,7 +3694,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1380
+ 1384
src/app/guards/dirty-saved-view.guard.ts
@@ -7722,7 +7722,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1031
+ 1035
Error downloading document
@@ -7730,7 +7730,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1110
+ 1114
Page Fit
@@ -7738,7 +7738,7 @@
Split confirm
src/app/components/document-detail/document-detail.component.ts
- 1321
+ 1325
Split confirm
@@ -7746,7 +7746,7 @@
This operation will split the selected document(s) into new documents.
src/app/components/document-detail/document-detail.component.ts
- 1322
+ 1326
This operation will split the selected document(s) into new documents.
@@ -7754,7 +7754,7 @@
Split operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1338
+ 1342
Split operation for "" will begin in the background.
@@ -7762,7 +7762,7 @@
Error executing split operation
src/app/components/document-detail/document-detail.component.ts
- 1347
+ 1351
Error executing split operation
@@ -7770,7 +7770,7 @@
Rotate confirm
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7782,7 +7782,7 @@
This operation will permanently rotate the original version of the current document.
src/app/components/document-detail/document-detail.component.ts
- 1361
+ 1365
This operation will permanently rotate the original version of the current document.
@@ -7790,7 +7790,7 @@
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1377
+ 1381
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
@@ -7798,7 +7798,7 @@
Error executing rotate operation
src/app/components/document-detail/document-detail.component.ts
- 1389
+ 1393
Error executing rotate operation
@@ -7806,7 +7806,7 @@
Delete pages confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
Delete pages confirm
@@ -7814,7 +7814,7 @@
This operation will permanently delete the selected pages from the original document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently delete the selected pages from the original document.
@@ -7822,7 +7822,7 @@
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1417
+ 1421
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
@@ -7830,7 +7830,7 @@
Error executing delete pages operation
src/app/components/document-detail/document-detail.component.ts
- 1426
+ 1430
Error executing delete pages operation
@@ -7838,11 +7838,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1486
+ 1490
src/app/components/document-detail/document-detail.component.ts
- 1490
+ 1494
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 24fd05147..0e2828bee 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -5,7 +5,7 @@
Close
- node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/alert/alert.ts
51
إغلاق
@@ -13,7 +13,7 @@
Slide of
- node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
132,136
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
- node_modules/src/carousel/carousel.ts
- 148,149
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 156,160
السابق
Next
- node_modules/src/carousel/carousel.ts
- 167,170
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 196,199
التالي
Previous month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
77,79
- node_modules/src/datepicker/datepicker-navigation.ts
- 97,98
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
+ 102
الشهر السابق
Next month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
الشهر التالي
@@ -62,7 +62,7 @@
HH
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
إغلاق
@@ -78,11 +78,11 @@
Select month
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
تحديد الشهر
@@ -90,7 +90,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1323
+ 1327
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3694,7 +3694,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1380
+ 1384
src/app/guards/dirty-saved-view.guard.ts
@@ -7722,7 +7722,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1031
+ 1035
Error downloading document
@@ -7730,7 +7730,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1110
+ 1114
احتواء الصفحة
@@ -7738,7 +7738,7 @@
Split confirm
src/app/components/document-detail/document-detail.component.ts
- 1321
+ 1325
تأكيد التجزئة
@@ -7746,7 +7746,7 @@
This operation will split the selected document(s) into new documents.
src/app/components/document-detail/document-detail.component.ts
- 1322
+ 1326
هذه العملية ستؤدي إلى فصل المستند أو المستندات المحددة لمستندات جديدة.
@@ -7754,7 +7754,7 @@
Split operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1338
+ 1342
Split operation for "" will begin in the background.
@@ -7762,7 +7762,7 @@
Error executing split operation
src/app/components/document-detail/document-detail.component.ts
- 1347
+ 1351
خطأ أثناء تنفيذ عملية التجزئة
@@ -7770,7 +7770,7 @@
Rotate confirm
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7782,7 +7782,7 @@
This operation will permanently rotate the original version of the current document.
src/app/components/document-detail/document-detail.component.ts
- 1361
+ 1365
هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند الحالي بشكل دائم.
@@ -7790,7 +7790,7 @@
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1377
+ 1381
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
@@ -7798,7 +7798,7 @@
Error executing rotate operation
src/app/components/document-detail/document-detail.component.ts
- 1389
+ 1393
خطأ أثناء تنفيذ عملية التدوير
@@ -7806,7 +7806,7 @@
Delete pages confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
تأكيد حذف الصفحات
@@ -7814,7 +7814,7 @@
This operation will permanently delete the selected pages from the original document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
ستؤدي هذه العملية إلى حذف الصفحات المحددة نهائيا من المستند الأصلي.
@@ -7822,7 +7822,7 @@
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1417
+ 1421
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
@@ -7830,7 +7830,7 @@
Error executing delete pages operation
src/app/components/document-detail/document-detail.component.ts
- 1426
+ 1430
خطأ أثناء تنفيذ عملية حذف الصفحات
@@ -7838,11 +7838,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1486
+ 1490
src/app/components/document-detail/document-detail.component.ts
- 1490
+ 1494
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index 1f5dcb7e4..1603f5879 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -5,7 +5,7 @@
Close
- node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/alert/alert.ts
51
Закрыць
@@ -13,7 +13,7 @@
Slide of
- node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
132,136
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
- node_modules/src/carousel/carousel.ts
- 148,149
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 156,160
Папярэдняя
Next
- node_modules/src/carousel/carousel.ts
- 167,170
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 196,199
Наступная
Previous month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
77,79
- node_modules/src/datepicker/datepicker-navigation.ts
- 97,98
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
+ 102
Папярэдні месяц
Next month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
Наступны месяц
@@ -62,7 +62,7 @@
HH
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Закрыць
@@ -78,11 +78,11 @@
Select month
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Абраць месяц
@@ -90,7 +90,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1323
+ 1327
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3694,7 +3694,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1380
+ 1384
src/app/guards/dirty-saved-view.guard.ts
@@ -7722,7 +7722,7 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1031
+ 1035
Error downloading document
@@ -7730,7 +7730,7 @@
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1110
+ 1114
Page Fit
@@ -7738,7 +7738,7 @@
Split confirm
src/app/components/document-detail/document-detail.component.ts
- 1321
+ 1325
Split confirm
@@ -7746,7 +7746,7 @@
This operation will split the selected document(s) into new documents.
src/app/components/document-detail/document-detail.component.ts
- 1322
+ 1326
This operation will split the selected document(s) into new documents.
@@ -7754,7 +7754,7 @@
Split operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1338
+ 1342
Split operation for "" will begin in the background.
@@ -7762,7 +7762,7 @@
Error executing split operation
src/app/components/document-detail/document-detail.component.ts
- 1347
+ 1351
Error executing split operation
@@ -7770,7 +7770,7 @@
Rotate confirm
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -7782,7 +7782,7 @@
This operation will permanently rotate the original version of the current document.
src/app/components/document-detail/document-detail.component.ts
- 1361
+ 1365
This operation will permanently rotate the original version of the current document.
@@ -7790,7 +7790,7 @@
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1377
+ 1381
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
@@ -7798,7 +7798,7 @@
Error executing rotate operation
src/app/components/document-detail/document-detail.component.ts
- 1389
+ 1393
Error executing rotate operation
@@ -7806,7 +7806,7 @@
Delete pages confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
Delete pages confirm
@@ -7814,7 +7814,7 @@
This operation will permanently delete the selected pages from the original document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
This operation will permanently delete the selected pages from the original document.
@@ -7822,7 +7822,7 @@
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1417
+ 1421
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
@@ -7830,7 +7830,7 @@
Error executing delete pages operation
src/app/components/document-detail/document-detail.component.ts
- 1426
+ 1430
Error executing delete pages operation
@@ -7838,11 +7838,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1486
+ 1490
src/app/components/document-detail/document-detail.component.ts
- 1490
+ 1494
An error occurred loading tiff:
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index 752225359..ea3b1e78e 100644
--- a/src-ui/src/locale/messages.bg_BG.xlf
+++ b/src-ui/src/locale/messages.bg_BG.xlf
@@ -5,7 +5,7 @@
Close
- node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/alert/alert.ts
51
Затвори
@@ -13,48 +13,48 @@
Slide of
- node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
132,136
Currently selected slide number read by screen reader
- Slide of
+ Слайд of
Previous
- node_modules/src/carousel/carousel.ts
- 148,149
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 156,160
Назад
Next
- node_modules/src/carousel/carousel.ts
- 167,170
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 196,199
Напред
Previous month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
77,79
- node_modules/src/datepicker/datepicker-navigation.ts
- 97,98
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
+ 102
Предишен месец
Next month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
Следващ месец
@@ -62,7 +62,7 @@
HH
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Затвори
@@ -78,11 +78,11 @@
Select month
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Изберете месец
@@ -90,7 +90,7 @@
- The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some.
+ Таблото за управление може да се използва за показване на запазени изгледи, като например „Входяща кутия“. Изгледите се намират под Управление > Сапазени изгледи, след като сте създали някои.
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.
@@ -524,7 +524,7 @@
src/app/app.component.ts
240
- Check out the settings for various tweaks to the web app.
+ Разгледайте настройките за различни настройки на уеб приложението.
Thank you! 🙏
@@ -864,7 +864,7 @@
src/app/components/admin/settings/settings.component.html
4
- Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>.
+ Опции за персонализиране на външния вид, известията и др. Настройките се отнасят за <strong> текущия потребител само </strong>.
Start tour
@@ -1076,7 +1076,7 @@
src/app/components/admin/settings/settings.component.html
165,167
- Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually.
+ Проверката на актуализацията работи, като пингва публичния API на GitHub за най-новата версия, за да определи дали е налична нова версия. Действителното актуализиране на приложението все още трябва да се извършва ръчно.
No tracking data is collected by the app in any way.
@@ -1084,7 +1084,7 @@
src/app/components/admin/settings/settings.component.html
169
- No tracking data is collected by the app in any way.
+ Приложението по никакъв начин не събира данни за проследяване.
Saved Views
@@ -1104,7 +1104,7 @@
src/app/components/manage/saved-views/saved-views.component.html
2
- Saved Views
+ Запазени изгледи
Show warning when closing saved views with unsaved changes
@@ -1144,7 +1144,7 @@
src/app/components/admin/settings/settings.component.html
194
- Default zoom
+ Увеличаване по подразбиране
Fit width
@@ -1152,7 +1152,7 @@
src/app/components/admin/settings/settings.component.html
198
- Fit width
+ Фиксирай ширина
Fit page
@@ -1160,7 +1160,7 @@
src/app/components/admin/settings/settings.component.html
199
- Fit page
+ Фиксирай страница
Only applies to the Paperless-ngx PDF viewer.
@@ -1168,7 +1168,7 @@
src/app/components/admin/settings/settings.component.html
201
- Only applies to the Paperless-ngx PDF viewer.
+ Отнася се само за програмата за преглед на PDF файлове Paperless-ngx.
Automatically remove inbox tag(s) on save
@@ -1184,7 +1184,7 @@
src/app/components/admin/settings/settings.component.html
213
- Show document thumbnail during loading
+ Показване на миниатюра на документа по време на зареждане
Global search
@@ -1196,7 +1196,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
120
- Global search
+ Глобално търсене
Do not include advanced search results
@@ -1204,7 +1204,7 @@
src/app/components/admin/settings/settings.component.html
220
- Do not include advanced search results
+ Не включвайте разширени резултати от търсенето
Full search links to
@@ -1212,7 +1212,7 @@
src/app/components/admin/settings/settings.component.html
226
- Full search links to
+ Пълни връзки за търсене към
Title and content search
@@ -1220,7 +1220,7 @@
src/app/components/admin/settings/settings.component.html
230
- Title and content search
+ Търсене по заглавие и съдържание
Advanced search
@@ -1368,7 +1368,7 @@
src/app/components/admin/settings/settings.component.html
265,267
- Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI.
+ Настройките се прилагат към този потребителски акаунт за обекти (маркери, правила за поща и т. н., но не и документи), създадени чрез уеб интерфейса.
Default Owner
@@ -1760,7 +1760,7 @@
src/app/components/admin/tasks/tasks.component.html
16
- Filter by
+ Филтрирай по
Name
@@ -2068,7 +2068,7 @@
src/app/components/admin/tasks/tasks.component.ts
45
- Result
+ Резултат
Dismiss selected
@@ -2148,7 +2148,7 @@
src/app/components/app-frame/app-frame.component.html
231
- Trash
+ Кошче
Manage trashed documents that are pending deletion.
@@ -2156,7 +2156,7 @@
src/app/components/admin/trash/trash.component.html
4
- Manage trashed documents that are pending deletion.
+ Управлявайте преместени документи, които чакат изтриване.
Restore selected
@@ -2164,7 +2164,7 @@
src/app/components/admin/trash/trash.component.html
11
- Restore selected
+ Върни избраните
Delete selected
@@ -2172,7 +2172,7 @@
src/app/components/admin/trash/trash.component.html
14
- Delete selected
+ Изтрии избраните
Empty trash
@@ -2180,7 +2180,7 @@
src/app/components/admin/trash/trash.component.html
17
- Empty trash
+ Изпразни кошчето
Remaining
@@ -2188,7 +2188,7 @@
src/app/components/admin/trash/trash.component.html
36
- Remaining
+ Останава
days
@@ -2196,7 +2196,7 @@
src/app/components/admin/trash/trash.component.html
63
- days
+ дни
Restore
@@ -2208,7 +2208,7 @@
src/app/components/admin/trash/trash.component.html
78
- Restore
+ Възстановяване
Delete
@@ -2364,7 +2364,7 @@
src/app/components/admin/trash/trash.component.html
94
- {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}}
+ {VAR_PLURAL, plural, =1 {Един документ в кошчето} other { всички документи в кошчето}}
Confirm delete
@@ -2392,7 +2392,7 @@
src/app/components/admin/trash/trash.component.ts
79
- This operation will permanently delete this document.
+ Тази операция ще изтрие завинаги този документ.
This operation cannot be undone.
@@ -2440,7 +2440,7 @@
src/app/components/admin/trash/trash.component.ts
90
- Document "" deleted
+ Документ "" изтрит
Error deleting document ""
@@ -2448,7 +2448,7 @@
src/app/components/admin/trash/trash.component.ts
97
- Error deleting document ""
+ Грешка при изтриване на документа ""
This operation will permanently delete the selected documents.
@@ -2456,7 +2456,7 @@
src/app/components/admin/trash/trash.component.ts
112
- This operation will permanently delete the selected documents.
+ Тази операция ще изтрие завинаги избраните документи.
This operation will permanently delete all documents in the trash.
@@ -2464,7 +2464,7 @@
src/app/components/admin/trash/trash.component.ts
113
- This operation will permanently delete all documents in the trash.
+ Тази операция ще изтрие за постоянно всички документи в кошчето.
Document(s) deleted
@@ -2472,7 +2472,7 @@
src/app/components/admin/trash/trash.component.ts
124
- Document(s) deleted
+ Документ(и) изтрит
Error deleting document(s)
@@ -2480,7 +2480,7 @@
src/app/components/admin/trash/trash.component.ts
131
- Error deleting document(s)
+ Грешка при изтриване на документ(и)
Document "" restored
@@ -2488,7 +2488,7 @@
src/app/components/admin/trash/trash.component.ts
144
- Document "" restored
+ Документ "" възстановен
Error restoring document ""
@@ -2496,7 +2496,7 @@
src/app/components/admin/trash/trash.component.ts
155
- Error restoring document ""
+ Грешка при възстановаяване на документ ""
Document(s) restored
@@ -2504,7 +2504,7 @@
src/app/components/admin/trash/trash.component.ts
167
- Document(s) restored
+ Документ(и) възстановен
Error restoring document(s)
@@ -2512,7 +2512,7 @@
src/app/components/admin/trash/trash.component.ts
173
- Error restoring document(s)
+ Грешка при възстановяване на документ(и)
Users & Groups
@@ -2750,15 +2750,15 @@
src/app/components/document-detail/document-detail.component.ts
- 1323
+ 1327
src/app/components/document-detail/document-detail.component.ts
- 1362
+ 1366
src/app/components/document-detail/document-detail.component.ts
- 1403
+ 1407
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -2800,7 +2800,7 @@
src/app/components/admin/users-groups/users-groups.component.ts
132
- Deleted user ""
+ Изтрит потребител ""
Error deleting user "".
@@ -2808,7 +2808,7 @@
src/app/components/admin/users-groups/users-groups.component.ts
139
- Error deleting user "".
+ Грешка при изтриване на потребител "".
Saved group "".
@@ -2848,7 +2848,7 @@
src/app/components/admin/users-groups/users-groups.component.ts
185
- Deleted group ""
+ Изтрита група ""
Error deleting group "".
@@ -2856,7 +2856,7 @@
src/app/components/admin/users-groups/users-groups.component.ts
192
- Error deleting group "".
+ Грешка при изтриването на групата "".
by Paperless-ngx
@@ -2864,7 +2864,7 @@
src/app/components/app-frame/app-frame.component.html
20
- by Paperless-ngx
+ от А. Йорданов
Logged in as
@@ -3180,7 +3180,7 @@
src/app/components/app-frame/global-search/global-search.component.html
26
- Search
+ Търсене
Open
@@ -3208,7 +3208,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
143
- Open
+ Отвори
Filter documents
@@ -3216,7 +3216,7 @@
src/app/components/app-frame/global-search/global-search.component.html
62
- Filter documents
+ Филтър документи
Download
@@ -3252,7 +3252,7 @@
src/app/components/app-frame/global-search/global-search.component.html
87
- No results
+ Няма резултати
Documents
@@ -3260,7 +3260,7 @@
src/app/components/app-frame/global-search/global-search.component.html
90
- Documents
+ Документи
Saved Views
@@ -3268,7 +3268,7 @@
src/app/components/app-frame/global-search/global-search.component.html
96
- Saved Views
+ Запазени изгледи
Tags
@@ -3276,7 +3276,7 @@
src/app/components/app-frame/global-search/global-search.component.html
103
- Tags
+ Етикети
Correspondents
@@ -3284,7 +3284,7 @@
src/app/components/app-frame/global-search/global-search.component.html
110
- Correspondents
+ Кореспонденти
Document types
@@ -3292,7 +3292,7 @@
src/app/components/app-frame/global-search/global-search.component.html
117
- Document types
+ Типове документи
Storage paths
@@ -3300,7 +3300,7 @@
src/app/components/app-frame/global-search/global-search.component.html
124
- Storage paths
+ Пътища за съхранение
Users
@@ -3308,7 +3308,7 @@
src/app/components/app-frame/global-search/global-search.component.html
131
- Users
+ Потребители
Groups
@@ -3316,7 +3316,7 @@
src/app/components/app-frame/global-search/global-search.component.html
138
- Groups
+ Групи
Custom fields
@@ -3324,7 +3324,7 @@
src/app/components/app-frame/global-search/global-search.component.html
145
- Custom fields
+ Персонализирани полета
Mail accounts
@@ -3332,7 +3332,7 @@
src/app/components/app-frame/global-search/global-search.component.html
152
- Mail accounts
+ Пощенски акаунти
Mail rules
@@ -3340,7 +3340,7 @@
src/app/components/app-frame/global-search/global-search.component.html
159
- Mail rules
+ Правила за поща
Workflows
@@ -3348,7 +3348,7 @@
src/app/components/app-frame/global-search/global-search.component.html
166
- Workflows
+ Работни процеси
Successfully updated object.
@@ -3360,7 +3360,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
247
- Successfully updated object.
+ Успешно актуализиран обект.
Error occurred saving object.
@@ -3372,7 +3372,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
250
- Error occurred saving object.
+ Възникна грешка при запазване на обект.
Clear All
@@ -3380,7 +3380,7 @@
src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
16
- Clear All
+ Изчистване на всички
No notifications
@@ -3388,7 +3388,7 @@
src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
20
- No notifications
+ Няма известия
Clear
@@ -3488,7 +3488,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ на
Pages to remove
@@ -3496,7 +3496,7 @@
src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html
16
- Pages to remove
+ Страници за премахване
Documents:
@@ -3504,7 +3504,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
9
- Documents:
+ Документи:
Use metadata from:
@@ -3512,7 +3512,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
22
- Use metadata from:
+ Използвайте метаданни от:
Regenerate all metadata
@@ -3520,7 +3520,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
24
- Regenerate all metadata
+ Повторно генериране на всички метаданни
Try to include archive version in merge for non-PDF files
@@ -3528,7 +3528,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
32
- Try to include archive version in merge for non-PDF files
+ Опитайте се да включите архивна версия в сливането за не-PDF файлове
Delete original documents after successful merge
@@ -3536,7 +3536,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
36
- Delete original documents after successful merge
+ Изтрийте оригиналните документи след успешно сливане
Note that only PDFs will be included.
@@ -3544,7 +3544,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
39
- Note that only PDFs will be included.
+ Обърнете внимание, че ще бъдат включени само PDF файлове.
Note that only PDFs will be rotated.
@@ -3552,7 +3552,7 @@
src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html
25
- Note that only PDFs will be rotated.
+ Обърнете внимание, че само PDF файловете ще бъдат завъртяни.
Add Split
@@ -3560,7 +3560,7 @@
src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html
28
- Add Split
+ Добавяне на разделяне
Delete original document after successful split
@@ -3568,7 +3568,7 @@
src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html
51
- Delete original document after successful split
+ Изтрийте оригиналния документ след успешно разделяне
View
@@ -3596,7 +3596,7 @@
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
10
- Search fields
+ Полета за търсене
Create new field
@@ -3604,7 +3604,7 @@
src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
21
- Create new field
+ Създайте ново поле
Saved field "".
@@ -3660,7 +3660,7 @@
src/app/components/common/input/date/date.component.html
21
- Today
+ Днес
Close
@@ -3694,7 +3694,7 @@
src/app/components/document-detail/document-detail.component.ts
- 1380
+ 1384
src/app/guards/dirty-saved-view.guard.ts
@@ -3716,7 +3716,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
92
- True
+ Правилно
False
@@ -3732,7 +3732,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
93
- False
+ Грешно
Search docs...
@@ -3744,7 +3744,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
109
- Search docs...
+ Търсене в документи...
Any
@@ -3792,7 +3792,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
146
- Not
+ Не
Add query
@@ -3800,7 +3800,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
165
- Add query
+ Добавете заявка
Add expression
@@ -3808,7 +3808,7 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
168
- Add expression
+ Добавете израз
Relative dates
@@ -3820,7 +3820,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.html
101
- Relative dates
+ Относителни дати
now
@@ -3844,7 +3844,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.html
120
- From
+ От
To
@@ -3856,7 +3856,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.html
144
- To
+ До
Added
@@ -3888,7 +3888,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
73
- Within 1 week
+ В рамките на 1 седмица
Within 1 month
@@ -3896,7 +3896,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
78
- Within 1 month
+ В рамките на 1 месец
Within 3 months
@@ -3904,7 +3904,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
83
- Within 3 months
+ В рамките на 3 месеца
Within 1 year
@@ -3912,7 +3912,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
88
- Within 1 year
+ В рамките на 1 година
This year
@@ -3920,7 +3920,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
93
- This year
+ Тази година
This month
@@ -3928,7 +3928,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
98
- This month
+ Този месец
Yesterday
@@ -3940,7 +3940,7 @@
src/app/pipes/custom-date.pipe.ts
29
- Yesterday
+ Вчера
Matching algorithm
@@ -4044,7 +4044,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
20
- Add option
+ Добавяне на опция
Warning: existing instances of this field will retain their current value index (e.g. option #1, #2, #3) after editing the options here
@@ -4052,7 +4052,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
32
- Warning: existing instances of this field will retain their current value index (e.g. option #1, #2, #3) after editing the options here
+ Предупреждение: Съществуващите случаи на това поле ще запазят техния текущ индекс на стойността (напр. Вариант № 1, №2, №3) след редактиране на опциите тук
Default Currency
@@ -4060,7 +4060,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
37
- Default Currency
+ Валута по подразбиране
3-character currency code
@@ -4068,7 +4068,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
37
- 3-character currency code
+ 3 знака валутен код
Use locale
@@ -4076,7 +4076,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
37
- Use locale
+ Използвайте локално
Create new custom field
@@ -4288,7 +4288,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
19
- Order
+ Поръчка
Enabled
@@ -4316,7 +4316,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
27
- Paperless will only process mails that match all of the criteria specified below.
+ Paperless ще обработва само имейли, които отговарят на ВСИЧКИ филтри, дадени от долу.
Folder
@@ -4404,7 +4404,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
44
- PDF layout
+ Оформление на PDF
Include only files matching
@@ -4412,7 +4412,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
47
- Include only files matching
+ Покажи само файлове, които съвпадат
Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
@@ -4424,7 +4424,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
48
- Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
+ Незадължително. Wildcards, напр. *.pdf или *фактура *разрешена. Може да бъде списък, разделен за запетая. Случай нечувствителен.
Exclude files matching
@@ -4432,7 +4432,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
48
- Exclude files matching
+ Не показвай файлове, които съвпадат
Action
@@ -4448,7 +4448,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
54
- Only performed if the mail is processed.
+ Ще се извърши само ако пощата е обработена.
Action parameter
@@ -4576,7 +4576,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
65
- System default
+ Настройки по подразбиране
Text, then HTML
@@ -4584,7 +4584,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
69
- Text, then HTML
+ Текст, след това HTML
HTML, then text
@@ -4592,7 +4592,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
73
- HTML, then text
+ HTML, след това текст
HTML only
@@ -4600,7 +4600,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
77
- HTML only
+ Само HTML
Text only
@@ -4608,7 +4608,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
81
- Text only
+ Само текст
Move to specified folder
@@ -4732,7 +4732,7 @@
src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
13
- See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>.
+ Виж <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>документацията</a>.
Preview
@@ -4752,7 +4752,7 @@
src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
30
- Path test failed
+ Тестът към пътя е неуспешен
No document selected
@@ -4760,7 +4760,7 @@
src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
32
- No document selected
+ Няма избран документ
Search for a document
@@ -4768,7 +4768,7 @@
src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
38
- Search for a document
+ Потърсете документ
No documents found
@@ -4900,7 +4900,7 @@
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
26
- Admin
+ Админ
Access logs, Django backend
@@ -4908,7 +4908,7 @@
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
26
- Access logs, Django backend
+ Логове за достъп
Superuser
@@ -4940,7 +4940,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
137
- Two-factor Authentication
+ Двуфакторното удостоверяване
Disable Two-factor Authentication
@@ -4960,7 +4960,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
170
- Disable Two-factor Authentication
+ Деактивирайте двуфакторното удостоверяване
Create new user account
@@ -4984,7 +4984,7 @@
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
131
- Totp deactivated
+ Totp е деактивиран
Totp deactivation failed
@@ -4996,7 +4996,7 @@
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
139
- Totp deactivation failed
+ Грешка при деактивиране на Totp
Sort order
@@ -5068,7 +5068,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
123
- Set scheduled trigger offset and which date field to use.
+ Задайте планирано отместване на тригера и кое поле за дата да използвате.
Offset days
@@ -5076,7 +5076,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
126
- Offset days
+ Дата на отместване
Relative to
@@ -5084,7 +5084,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
129
- Relative to
+ Спрямо
Custom field
@@ -5092,7 +5092,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
133
- Custom field
+ Персонализирано поле
Custom field to use for date.
@@ -5100,7 +5100,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
133
- Custom field to use for date.
+ Персонализирано поле за използване за дата.
Recurring
@@ -5108,7 +5108,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
139
- Recurring
+ Повтарящи се
Trigger is recurring.
@@ -5116,7 +5116,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
139
- Trigger is recurring.
+ Тригерът се повтаря.
Recurring interval days
@@ -5124,7 +5124,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
143
- Recurring interval days
+ Повтарящи се интервални дни
Repeat the trigger every n days.
@@ -5132,7 +5132,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
143
- Repeat the trigger every n days.
+ Повторете задействането на всеки n дни.
Trigger for documents that match all filters specified below.
@@ -5140,7 +5140,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
148
- Trigger for documents that match all filters specified below.
+ Тригер за съвпадащи документи all филтри, посочени по-долу.
Filter filename
@@ -5180,7 +5180,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
154
- Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+ Прилагане към документи, които съответстват на този път. Разрешени са заместващи символи, посочени като *. Нормализирани по случай.</a>
Filter mail rule
@@ -5220,7 +5220,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
169
- Has any of tags
+ Има някой от етикетите
Has correspondent
@@ -5372,7 +5372,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
261
- Remove storage paths
+ Премахнете пътищата за съхранение
Remove custom fields
@@ -5380,7 +5380,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
267
- Remove custom fields
+ Премахнете персонализираните полета
Remove owners
@@ -5420,7 +5420,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
330
- Email subject
+ Имейл тема
Email body
@@ -5428,7 +5428,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
331
- Email body
+ Имейл съобщение
Email recipients
@@ -5436,7 +5436,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
332
- Email recipients
+ Получатели на имейл
Attach document
@@ -5444,7 +5444,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
333
- Attach document
+ Прикачете документ
Webhook url
@@ -5452,7 +5452,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
341
- Webhook url
+ Url адрес на известяване
Use parameters for webhook body
@@ -5460,7 +5460,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
343
- Use parameters for webhook body
+ Избери параметри за известяване със съобщение
Send webhook payload as JSON
@@ -5468,7 +5468,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
344
- Send webhook payload as JSON
+ Изпратете известяване като JSON
Webhook params
@@ -5476,7 +5476,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
347
- Webhook params
+ Известяване параметри
Webhook body
@@ -5484,7 +5484,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
349
- Webhook body
+ Известяване съобщение
Webhook headers
@@ -5492,7 +5492,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
351
- Webhook headers
+ Заглавия за известяване
Include document
@@ -5500,7 +5500,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
352
- Include document
+ Добави документа
Consume Folder
@@ -5532,7 +5532,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
77
- Web UI
+ Уеб интерфейс
Modified
@@ -5552,7 +5552,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
96
- Custom Field
+ Персонализирано поле
Consumption Started
@@ -5560,7 +5560,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
103
- Consumption Started
+ Започната обработка
Document Added
@@ -5584,7 +5584,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
115
- Scheduled
+ Планирано
Assignment
@@ -5608,7 +5608,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
134
- Webhook
+ Известяване
Create new workflow
@@ -5632,7 +5632,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
7
- Email address(es)
+ Имейл адрес(и)
Subject
@@ -5640,7 +5640,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
11
- Subject
+ Тема
Message
@@ -5648,7 +5648,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
15
- Message
+ Съобщение
Use archive version
@@ -5656,7 +5656,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
23
- Use archive version
+ Използвайте архивна версия
Send email
@@ -5664,7 +5664,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
29
- Send email
+ Изпратете имейл
Email Document
@@ -5672,7 +5672,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
17
- Email Document
+ Имейл документ
Email sent
@@ -5680,7 +5680,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
66
- Email sent
+ Изпратен имейл
Error emailing document
@@ -5688,7 +5688,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
70
- Error emailing document
+ Грешка при изпращане на документа по имейл
Include
@@ -5765,7 +5765,7 @@
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
554
- Open filter
+ Отвори филтър
Keyboard shortcuts
@@ -5773,7 +5773,7 @@
src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts
22
- Keyboard shortcuts
+ Клавишни комбинации
Remove
@@ -5873,7 +5873,7 @@
src/app/components/common/input/document-link/document-link.component.html
50
- Remove link
+ Премахни връзка
Open link
@@ -5893,7 +5893,7 @@
src/app/components/common/input/document-link/document-link.component.html
51
- Not found
+ Не е намерено
Search for documents
@@ -5901,7 +5901,7 @@
src/app/components/common/input/document-link/document-link.component.ts
72
- Search for documents
+ Потърсете документ
Selected items
@@ -5909,7 +5909,7 @@
src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts
25
- Selected items
+ Избрани елементи
No items selected
@@ -5917,7 +5917,7 @@
src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts
31
- No items selected
+ Няма избрани елементи
Add
@@ -6010,7 +6010,7 @@
src/app/components/common/input/switch/switch.component.html
39
- Note: value has not yet been set and will not apply until explicitly changed
+ Забележка: стойността все още не е зададена и няма да се прилага, докато не бъде изрично променена
Add tag
@@ -6026,7 +6026,7 @@
src/app/components/common/input/tags/tags.component.html
20
- Remove tag
+ Премахване на етикет
Filter documents with these Tags
@@ -6054,7 +6054,7 @@
src/app/components/common/permissions-dialog/permissions-dialog.component.html
14
- Merge with existing permissions
+ Обединяване със съществуващи правила
Set permissions
@@ -6078,7 +6078,7 @@
src/app/components/common/permissions-dialog/permissions-dialog.component.ts
87
- Existing owner, user and group permissions will be merged with these settings.
+ Съществуващите разрешения за собственик, потребител и група ще бъдат обединени с тези настройки.
Any and all existing owner, user and group permissions will be replaced.
@@ -6134,7 +6134,7 @@
src/app/components/common/permissions-select/permissions-select.component.html
8
- Global permissions define what areas of the app and API endpoints users can access.
+ Глобалните разрешения определят до кои области на приложението и крайните точки на API потребителите имат достъп.
Type
@@ -6178,7 +6178,7 @@
src/app/components/common/preview-popup/preview-popup.component.ts
48
- Open preview
+ Отворете предварителен преглед
Edit Profile
@@ -6314,7 +6314,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
74
- Disconnect social account
+ Прекъснете връзката социален акаунт
Warning: disconnecting social accounts cannot be undone
@@ -6338,7 +6338,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
114
- Scan the QR code with your authenticator app and then enter the code below
+ Сканирайте QR кода с вашето приложение за удостоверяване и след това въведете кода по-долу
Authenticator secret
@@ -6346,7 +6346,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
117
- Authenticator secret
+ Ключ на автентификатора
You can store this secret and use it to reinstall your authenticator app at a later time.
@@ -6354,7 +6354,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
118
- You can store this secret and use it to reinstall your authenticator app at a later time.
+ Можете да съхраните този ключ и да го използвате, за да преинсталирате приложението си за удостоверяване по-късно.
Code
@@ -6362,7 +6362,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
121
- Code
+ Код
Recovery codes will not be shown again, make sure to save them.
@@ -6370,7 +6370,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
140
- Recovery codes will not be shown again, make sure to save them.
+ Кодовете за възстановяване няма да се показват отново, не забравяйте да ги запазите.
Copy codes
@@ -6378,7 +6378,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
158
- Copy codes
+ Копирайте кода
Emails must match
@@ -6434,7 +6434,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
268
- Error fetching TOTP settings
+ Грешка при извличане на настройките за TOTP
TOTP activated successfully
@@ -6442,7 +6442,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
289
- TOTP activated successfully
+ TOTP е активиран успешно
Error activating TOTP
@@ -6454,7 +6454,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
297
- Error activating TOTP
+ Грешка при активирането на TOTP
TOTP deactivated successfully
@@ -6462,7 +6462,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
313
- TOTP deactivated successfully
+ TOTP е деактивиран успешно
Error deactivating TOTP
@@ -6474,7 +6474,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
320
- Error deactivating TOTP
+ Грешка при деактивирането на TOTP
No existing links
@@ -6710,7 +6710,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
94
- Tasks Queue
+ Опашка със задачи
Redis Status
@@ -6734,7 +6734,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
142
- Health
+ Здраве
Search Index
@@ -6758,7 +6758,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
234
- Run Task
+ Изпълнете задача
Last Updated
@@ -6790,7 +6790,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
212
- Sanity Checker
+ Проверка на разума
Last Run
@@ -6798,7 +6798,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
241
- Last Run
+ Последно изпълнение
Copy Raw Error
@@ -6814,7 +6814,7 @@
src/app/components/dashboard/dashboard.component.html
42
- Hint: saved views can be created from the documents list
+ Съвет: Запазените изгледи могат да бъдат създадени от списък на документи
Hello , welcome to
@@ -6910,7 +6910,7 @@
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
73
- Filter by owner
+ Филтър по собственик
Yes
@@ -6998,7 +6998,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
43
- Current ASN
+ Текущ ASN
Other
@@ -7014,7 +7014,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
6
- Upload documents
+ Качване на документи
or drop files anywhere
@@ -7022,7 +7022,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
7
- or drop files anywhere
+ или пускайте файлове тук
Dismiss completed
@@ -7152,7 +7152,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
107
- Reprocess
+ Преработен
More like this
@@ -7172,7 +7172,7 @@
src/app/components/document-detail/document-detail.component.html
62
- Split
+ Сплит
Rotate
@@ -7184,7 +7184,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
110
- Rotate
+ Завъртете
Delete page(s)
@@ -7192,7 +7192,7 @@
src/app/components/document-detail/document-detail.component.html
70
- Delete page(s)
+ Изтриване на страница(и)
Send
@@ -7200,7 +7200,7 @@
src/app/components/document-detail/document-detail.component.html
88
- Send
+ Изпрати
Previous
@@ -7464,7 +7464,7 @@
src/app/components/document-detail/document-detail.component.html
317,320
- Notes
+ Бележки
History
@@ -7472,7 +7472,7 @@
src/app/components/document-detail/document-detail.component.html
328
- History
+ История
Save & next
@@ -7496,7 +7496,7 @@
src/app/components/document-detail/document-detail.component.html
378
- Document loading...
+ Зареждане на документи...
Enter Password
@@ -7552,7 +7552,7 @@
src/app/components/document-detail/document-detail.component.ts
546
- Next document
+ Следващ документ
Previous document
@@ -7560,7 +7560,7 @@
src/app/components/document-detail/document-detail.component.ts
556
- Previous document
+ Предишен документ
Close document
@@ -7580,7 +7580,7 @@
src/app/components/document-detail/document-detail.component.ts
571
- Save document
+ Запазете документ
Save and close / next
@@ -7588,7 +7588,7 @@
src/app/components/document-detail/document-detail.component.ts
580
- Save and close / next
+ Запази и затвори / следващ
Error retrieving metadata
@@ -7616,7 +7616,7 @@
src/app/components/document-detail/document-detail.component.ts
836
- Document "" saved successfully.
+ Документ "" запазен успешно.
Error saving document ""
@@ -7624,7 +7624,7 @@
src/app/components/document-detail/document-detail.component.ts
842
- Error saving document ""
+ Грешка при запазване на документ ""
Error saving document
@@ -7640,7 +7640,7 @@
src/app/components/document-detail/document-detail.component.ts
919
- Do you really want to move the document "" to the trash?
+ Наистина ли искате да преместите документа "" в кошчето?
Documents can be restored prior to permanent deletion.
@@ -7652,7 +7652,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
750
- Documents can be restored prior to permanent deletion.
+ Документите могат да бъдат възстановени преди перманентното им изтриване.
Move to trash
@@ -7664,7 +7664,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
752
- Move to trash
+ Премести в кошчето
Error deleting document
@@ -7684,7 +7684,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
790
- Reprocess confirm
+ Потвърди преработване
This operation will permanently recreate the archive file for this document.
@@ -7692,7 +7692,7 @@
src/app/components/document-detail/document-detail.component.ts
962
- This operation will permanently recreate the archive file for this document.
+ Тази операция ще пресъздаде архивен файл за този документ.
The archive file will be re-generated with the current settings.
@@ -7700,7 +7700,7 @@
src/app/components/document-detail/document-detail.component.ts
963
- The archive file will be re-generated with the current settings.
+ Архивният файл ще бъде отново генериран с текущите настройки.
Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
@@ -7708,7 +7708,7 @@
src/app/components/document-detail/document-detail.component.ts
973
- Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
+ Операция за преработка на "", ще започне на заден план. Затворете и отворете или презаредете този документ след приключване на операцията, за да видите ново съдържание.
Error executing operation
@@ -7722,15 +7722,15 @@
Error downloading document
src/app/components/document-detail/document-detail.component.ts
- 1031
+ 1035
- Error downloading document
+ Грешка при изтегляне на документа
Page Fit
src/app/components/document-detail/document-detail.component.ts
- 1110
+ 1114
Побиране на страницата
@@ -7738,113 +7738,113 @@
Split confirm
src/app/components/document-detail/document-detail.component.ts
- 1321
+ 1325
- Split confirm
+ Сплит потвърждение
This operation will split the selected document(s) into new documents.
src/app/components/document-detail/document-detail.component.ts
- 1322
+ 1326
- This operation will split the selected document(s) into new documents.
+ Тази операция ще раздели избрания документ(и) на нови документи.
Split operation for "" will begin in the background.
src/app/components/document-detail/document-detail.component.ts
- 1338
+ 1342
- Split operation for "" will begin in the background.
+ Сплит операция за "" ще започне на заден план.
Error executing split operation
src/app/components/document-detail/document-detail.component.ts
- 1347
+ 1351
- Error executing split operation
+ Грешка при изпълнение на операцията за разделяне
Rotate confirm
src/app/components/document-detail/document-detail.component.ts
- 1360
+ 1364
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
824
- Rotate confirm
+ Потвърждение за завъртане
This operation will permanently rotate the original version of the current document.
src/app/components/document-detail/document-detail.component.ts
- 1361
+ 1365
- This operation will permanently rotate the original version of the current document.
+ Тази операция ще завърти за постоянно оригиналната версия на текущия документ.
Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1377
+ 1381
- Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes.
+ Завъртане на "" ще започне във фонов режим. Затворете и отворете отново документа, след като операцията приключи, за да видите промените.
Error executing rotate operation
src/app/components/document-detail/document-detail.component.ts
- 1389
+ 1393
- Error executing rotate operation
+ Грешка при изпълнение на операция за завъртане
Delete pages confirm
src/app/components/document-detail/document-detail.component.ts
- 1401
+ 1405
- Delete pages confirm
+ Потвърждение за изтриване на страници
This operation will permanently delete the selected pages from the original document.
src/app/components/document-detail/document-detail.component.ts
- 1402
+ 1406
- This operation will permanently delete the selected pages from the original document.
+ Тази операция ще изтрие завинаги избраните страници от оригиналния документ.
Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
src/app/components/document-detail/document-detail.component.ts
- 1417
+ 1421
- Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes.
+ Изтриване на страници за "" ще започне във фонов режим. Затворете и отворете отново или презаредете този документ, след като операцията приключи, за да видите промените.
Error executing delete pages operation
src/app/components/document-detail/document-detail.component.ts
- 1426
+ 1430
- Error executing delete pages operation
+ Грешка при изпълнение на операцията за изтриване на страници
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1486
+ 1490
src/app/components/document-detail/document-detail.component.ts
- 1490
+ 1494
- An error occurred loading tiff:
+ Възникна грешка при зареждането на tiff:
No entries found.
@@ -7852,7 +7852,7 @@
src/app/components/document-history/document-history.component.html
10
- No entries found.
+ Няма намерени записи.
Select:
@@ -7940,7 +7940,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
78
- Filter custom fields
+ Филтриране на потребителски полета
Set values
@@ -7948,7 +7948,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
86
- Set values
+ Задайте стойности
Merge
@@ -7956,7 +7956,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
113
- Merge
+ Обединяване
Include:
@@ -7972,7 +7972,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
139
- Archived files
+ Архивирани файлове
Original files
@@ -7980,7 +7980,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
143
- Original files
+ Оригинални файлове
Use formatted filename
@@ -7988,7 +7988,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
148
- Use formatted filename
+ Използвайте форматирано име на файл
Error executing bulk operation
@@ -8154,7 +8154,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
579
- Confirm custom field assignment
+ Потвърдете персонализираното присвояване на полето
This operation will assign the custom field "" to selected document(s).
@@ -8162,7 +8162,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
585
- This operation will assign the custom field "" to selected document(s).
+ Тази операция ще присвои персонализираното поле "" to на избран документ(и).
This operation will assign the custom fields to selected document(s).
@@ -8170,7 +8170,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
590,592
- This operation will assign the custom fields to selected document(s).
+ Тази операция ще присвои потребителските полета към избран документ(и).
This operation will remove the custom field "" from selected document(s).
@@ -8178,7 +8178,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
598
- This operation will remove the custom field "" from selected document(s).
+ Тази операция ще премахне потребителското поле "" от избран документ(и).
This operation will remove the custom fields from selected document(s).
@@ -8186,7 +8186,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
603,605
- This operation will remove the custom fields from selected document(s).
+ Тази операция ще премахне персонализираните полета от избран(и) документ(и).
This operation will assign the custom fields and remove the custom fields on selected document(s).
@@ -8194,7 +8194,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
607,611
- This operation will assign the custom fields and remove the custom fields on selected document(s).
+ Тази операция ще присвои потребителските полета и ще премахне персонализираните полета на избран документ(и).
Move selected document(s) to the trash?
@@ -8202,7 +8202,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
749
- Move selected document(s) to the trash?
+ Премеси избраните документ(и) в кошчето?
This operation will permanently recreate the archive files for selected document(s).
@@ -8210,7 +8210,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
791
- This operation will permanently recreate the archive files for selected document(s).
+ Тази операция ще пресъздаде за постоянно архивните файлове за избран документ(и).
The archive files will be re-generated with the current settings.
@@ -8218,7 +8218,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
792
- The archive files will be re-generated with the current settings.
+ Архивните файлове ще бъдат повторно генерирани с текущите настройки.
This operation will permanently rotate the original version of document(s).
@@ -8226,7 +8226,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
825
- This operation will permanently rotate the original version of document(s).
+ Тази операция ще завърти за постоянно оригиналната версия на документ(и).
Merge confirm
@@ -8234,7 +8234,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
844
- Merge confirm
+ Потвърждаване на сливането
This operation will merge selected documents into a new document.
@@ -8242,7 +8242,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
845
- This operation will merge selected documents into a new document.
+ Тази операция ще се обедини избрани документи в нов документ.
Merged document will be queued for consumption.
@@ -8250,7 +8250,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
864
- Merged document will be queued for consumption.
+ Обединеният документ ще бъде поставен на опашка за потребление.
Custom fields updated.
@@ -8258,7 +8258,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
888
- Custom fields updated.
+ Персонализираните полета са актуализирани.
Error updating custom fields.
@@ -8266,7 +8266,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
897
- Error updating custom fields.
+ Грешка при актуализиране на персонализирани полета.
{VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
@@ -8274,7 +8274,7 @@
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
3,7
- {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
+ {VAR_PLURAL, plural, =1 {Задайте потребителски полета за 1 документ} other {Задайте персонализирани полета за документи}}
Select custom fields
@@ -8282,7 +8282,7 @@
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
13
- Select custom fields
+ Изберете потребителски полета
{VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
@@ -8291,8 +8291,8 @@
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
69,74
- {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
- remove custom fields from the selected documents.}}
+ {VAR_PLURAL, plural, =1 {Тази операция също ще премахне 1 потребителско поле от избраните документи.} other {Тази операция също ще
+ ремахне потребителски полета от избраните документи.}}
Filter by tag
@@ -8328,7 +8328,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
91,92
- Created:
+ Създаден:
Added:
@@ -8372,7 +8372,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
106
- {VAR_PLURAL, plural, =1 {1 page} other { pages}}
+ {VAR_PLURAL, plural, =1 {1 страница} other { страници}}
Shared
@@ -8488,7 +8488,7 @@
src/app/components/manage/saved-views/saved-views.component.html
52
- Show
+ Покажи
Sort
@@ -8528,7 +8528,7 @@
src/app/components/document-list/document-list.component.html
97
- All saved views
+ Всички запазени изгледи
{VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
@@ -8688,7 +8688,7 @@
src/app/components/document-list/document-list.component.html
258
- Sort by number of pages
+ Сортиране по брой страници
Pages
@@ -8716,7 +8716,7 @@
src/app/components/document-list/document-list.component.html
265,267
- Shared
+ Споделено
Sort by
@@ -8724,7 +8724,7 @@
src/app/components/document-list/document-list.component.html
272,273
- Sort by
+ Сортирай по:
Edit document
@@ -8740,7 +8740,7 @@
src/app/components/document-list/document-list.component.html
307
- Preview document
+ Визуализация на документа
Reset filters / selection
@@ -8748,7 +8748,7 @@
src/app/components/document-list/document-list.component.ts
295
- Reset filters / selection
+ Нулиране на филтри/селекция
Open first [selected] document
@@ -8756,7 +8756,7 @@
src/app/components/document-list/document-list.component.ts
323
- Open first [selected] document
+ Отворете първия [selected] документ
Previous page
@@ -8764,7 +8764,7 @@
src/app/components/document-list/document-list.component.ts
339
- Previous page
+ Предишна страница
Next page
@@ -8772,7 +8772,7 @@
src/app/components/document-list/document-list.component.ts
351
- Next page
+ Следваща страница
View "" saved successfully.
@@ -8788,7 +8788,7 @@
src/app/components/document-list/document-list.component.ts
390
- Failed to save view "".
+ Неуспешно запазване на изгледа "".
View "" created successfully.
@@ -8804,7 +8804,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
90
- Dates
+ Дати
Title & content
@@ -8820,7 +8820,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
187
- File type
+ Тип файл
More like
@@ -8876,7 +8876,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
250,254
- Correspondent:
+ Кореспондент:
Without correspondent
@@ -8892,7 +8892,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
262,266
- Document type:
+ Тип документ:
Without document type
@@ -8908,7 +8908,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
274,278
- Storage path:
+ Път за съхранение:
Without storage path
@@ -8924,7 +8924,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
284,286
- Tag:
+ Етикет:
Without any tag
@@ -8940,7 +8940,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
294
- Custom fields query
+ Заявка за персонализирани полета
Title:
@@ -9176,7 +9176,7 @@
src/app/components/manage/management-list/management-list.component.html
86
- Filter Documents ()
+ Филтриране на документи ()
No fields defined.
@@ -9208,7 +9208,7 @@
src/app/components/manage/custom-fields/custom-fields.component.ts
116
- Deleted field ""
+ Изтрито поле ""
Error deleting field "".
@@ -9216,7 +9216,7 @@
src/app/components/manage/custom-fields/custom-fields.component.ts
125
- Error deleting field "".
+ Грешка при изтриване на полето "".
document type
@@ -9272,7 +9272,7 @@
src/app/components/manage/mail/mail.component.html
18
- Connect Gmail Account
+ Свързване с Gmail акаунт
Connect Outlook Account
@@ -9280,7 +9280,7 @@
src/app/components/manage/mail/mail.component.html
23
- Connect Outlook Account
+ Свържете с Outlook акаунт
Server
@@ -9300,7 +9300,7 @@
src/app/components/manage/mail/mail.component.html
86
- Process Mail
+ Обработка на поща
No mail accounts defined.
@@ -9332,7 +9332,7 @@
src/app/components/manage/mail/mail.component.html
112
- Sort Order
+ Ред на сортиране
Disabled
@@ -9376,7 +9376,7 @@
src/app/components/manage/mail/mail.component.ts
138
- OAuth2 authentication success
+ OAuth2 удостоверяване успешно
OAuth2 authentication failed, see logs for details
@@ -9384,7 +9384,7 @@
src/app/components/manage/mail/mail.component.ts
149
- OAuth2 authentication failed, see logs for details
+ OAuth2 удостоверяването е неуспешно, вижте регистрационни файлове за подробности
Saved account "".
@@ -9424,7 +9424,7 @@
src/app/components/manage/mail/mail.component.ts
204
- Deleted mail account ""
+ Изтрит имейл акаунт ""
Error deleting mail account "".
@@ -9432,7 +9432,7 @@
src/app/components/manage/mail/mail.component.ts
215
- Error deleting mail account "".
+ Грешка при изтриване на имейл профил "".
Processing mail account ""
@@ -9440,7 +9440,7 @@
src/app/components/manage/mail/mail.component.ts
227
- Processing mail account ""
+ Обработване на имейл акаунт ""
Error processing mail account ""
@@ -9448,7 +9448,7 @@
src/app/components/manage/mail/mail.component.ts
232
- Error processing mail account ""
+ Грешка при обработката на имейл акаунта ""
Saved rule "".
@@ -9472,7 +9472,7 @@
src/app/components/manage/mail/mail.component.ts
277
- Rule "" enabled.
+ Правило "" активирано.
Rule "" disabled.
@@ -9480,7 +9480,7 @@
src/app/components/manage/mail/mail.component.ts
278
- Rule "" disabled.
+ Правило "" забранено.
Error toggling rule "".
@@ -9488,7 +9488,7 @@
src/app/components/manage/mail/mail.component.ts
283
- Error toggling rule "".
+ Грешка при превключване на правило "".
Confirm delete mail rule
@@ -9512,7 +9512,7 @@
src/app/components/manage/mail/mail.component.ts
305
- Deleted mail rule ""
+ Правило за изтрита поща ""
Error deleting mail rule "".
@@ -9520,7 +9520,7 @@
src/app/components/manage/mail/mail.component.ts
316
- Error deleting mail rule "".
+ Грешка при изтриване на правилото за поща "".
Permissions updated
@@ -9668,7 +9668,7 @@
src/app/components/manage/management-list/management-list.component.ts
197
- Successfully updated "".
+ Успешно актуализиран "".
Error occurred while saving .
@@ -9732,7 +9732,7 @@
src/app/components/manage/saved-views/saved-views.component.html
4
- Customize the views of your documents.
+ Персонализирайте изгледите на вашите документи.
Documents page size
@@ -9740,7 +9740,7 @@
src/app/components/manage/saved-views/saved-views.component.html
41
- Documents page size
+ Размер на страницата на документите
Display as
@@ -9748,7 +9748,7 @@
src/app/components/manage/saved-views/saved-views.component.html
44
- Display as
+ Показване като
Table
@@ -9756,7 +9756,7 @@
src/app/components/manage/saved-views/saved-views.component.html
46
- Table
+ Таблица
Small Cards
@@ -9764,7 +9764,7 @@
src/app/components/manage/saved-views/saved-views.component.html
47
- Small Cards
+ Малки карти
Large Cards
@@ -9772,7 +9772,7 @@
src/app/components/manage/saved-views/saved-views.component.html
48
- Large Cards
+ Големи карти
No saved views defined.
@@ -9796,7 +9796,7 @@
src/app/components/manage/saved-views/saved-views.component.ts
158
- Views saved successfully.
+ Изгледите са запазени успешно.
Error while saving views.
@@ -9804,7 +9804,7 @@
src/app/components/manage/saved-views/saved-views.component.ts
163
- Error while saving views.
+ Грешка при запазване на изгледи.
storage path
@@ -9916,7 +9916,7 @@
src/app/components/manage/workflows/workflows.component.ts
146
- Deleted workflow "".
+ Изтрит работен процес "".
Error deleting workflow "".
@@ -9924,7 +9924,7 @@
src/app/components/manage/workflows/workflows.component.ts
153
- Error deleting workflow "".
+ Грешка при изтриване на работния процес "".
Enabled workflow ""
@@ -9932,7 +9932,7 @@
src/app/components/manage/workflows/workflows.component.ts
166
- Enabled workflow ""
+ Активиран работен процес ""
Disabled workflow ""
@@ -9940,7 +9940,7 @@
src/app/components/manage/workflows/workflows.component.ts
167
- Disabled workflow ""
+ Деактивиран работен процес ""
Error toggling workflow "".
@@ -9948,7 +9948,7 @@
src/app/components/manage/workflows/workflows.component.ts
174
- Error toggling workflow "".
+ Грешка при превключване на работния процес "".
Not Found
@@ -9972,7 +9972,7 @@
src/app/data/custom-field-query.ts
24
- Equal to
+ Равно на
In
@@ -9980,7 +9980,7 @@
src/app/data/custom-field-query.ts
25
- In
+ В
Is null
@@ -9988,7 +9988,7 @@
src/app/data/custom-field-query.ts
26
- Is null
+ Е нула
Exists
@@ -9996,7 +9996,7 @@
src/app/data/custom-field-query.ts
27
- Exists
+ Съществува
Contains
@@ -10004,7 +10004,7 @@
src/app/data/custom-field-query.ts
28
- Contains
+ Съдържа
Contains (case-insensitive)
@@ -10012,7 +10012,7 @@
src/app/data/custom-field-query.ts
29
- Contains (case-insensitive)
+ Съдържа (без значение за малки и големи букви)
Greater than
@@ -10020,7 +10020,7 @@
src/app/data/custom-field-query.ts
30
- Greater than
+ По-голямо от
Greater than or equal to
@@ -10028,7 +10028,7 @@
src/app/data/custom-field-query.ts
31
- Greater than or equal to
+ По-голямо или равно на
Less than
@@ -10036,7 +10036,7 @@
src/app/data/custom-field-query.ts
32
- Less than
+ По-малко от
Less than or equal to
@@ -10044,7 +10044,7 @@
src/app/data/custom-field-query.ts
33
- Less than or equal to
+ По-малко или равно на
Range
@@ -10052,7 +10052,7 @@
src/app/data/custom-field-query.ts
34
- Range
+ Обхват
Boolean
@@ -10453,7 +10453,7 @@
src/app/pipes/custom-date.pipe.ts
15
- %s years ago
+ преди %s години
Last month
@@ -10469,7 +10469,7 @@
src/app/pipes/custom-date.pipe.ts
20
- %s months ago
+ преди %s месеца
Last week
@@ -10477,7 +10477,7 @@
src/app/pipes/custom-date.pipe.ts
24
- Last week
+ Миналата седмица
%s weeks ago
@@ -10485,7 +10485,7 @@
src/app/pipes/custom-date.pipe.ts
25
- %s weeks ago
+ преди %s седмици
%s days ago
@@ -10493,7 +10493,7 @@
src/app/pipes/custom-date.pipe.ts
30
- %s days ago
+ преди %s дни
%s hour ago
@@ -10501,7 +10501,7 @@
src/app/pipes/custom-date.pipe.ts
34
- %s hour ago
+ преди %s час
%s hours ago
@@ -10509,7 +10509,7 @@
src/app/pipes/custom-date.pipe.ts
35
- %s hours ago
+ преди %s часа
%s minute ago
@@ -10517,7 +10517,7 @@
src/app/pipes/custom-date.pipe.ts
39
- %s minute ago
+ преди %s минута
%s minutes ago
@@ -10525,7 +10525,7 @@
src/app/pipes/custom-date.pipe.ts
40
- %s minutes ago
+ преди %s минути
Just now
@@ -10533,7 +10533,7 @@
src/app/pipes/custom-date.pipe.ts
72
- Just now
+ Току-що
(no title)
@@ -10717,7 +10717,7 @@
src/app/services/settings.service.ts
153
- Korean
+ Корейски
Luxembourgish
@@ -10845,7 +10845,7 @@
src/app/services/settings.service.ts
249
- Chinese Traditional
+ Китайски традиционен
ISO 8601
@@ -10925,7 +10925,7 @@
src/app/services/websocket-status.service.ts
24
- Document already exists. Note: existing document is in the trash.
+ Документът вече съществува. Забележка: съществуващият документ е в кошчето.
Document with ASN already exists.
@@ -10941,7 +10941,7 @@
src/app/services/websocket-status.service.ts
26
- Document with ASN already exists. Note: existing document is in the trash.
+ Документ с ASN вече съществува. Забележка: съществуващият документ е в кошчето.
File not found.
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index c6f720baf..dc2d82fcb 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -5,7 +5,7 @@
Close
- node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/alert/alert.ts
51
Tanca
@@ -13,7 +13,7 @@
Slide of
- node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
132,136
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
- node_modules/src/carousel/carousel.ts
- 148,149
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 156,160
Anterior
Next
- node_modules/src/carousel/carousel.ts
- 167,170
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/carousel/carousel.ts
+ 196,199
Següent
Previous month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
77,79
- node_modules/src/datepicker/datepicker-navigation.ts
- 97,98
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
+ 102
Mes anterior
Next month
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
- node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/datepicker/datepicker-navigation.ts
102
Proper mes
@@ -62,7 +62,7 @@
HH
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Tanca
@@ -78,11 +78,11 @@
Select month
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
- node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.4_@angular+core@19.2.4_rxjs@7.8._7cb86cab255ede976b272d2c2294ed3c/node_modules/src/ngb-config.ts
13
Seleccioneu mes
@@ -90,7 +90,7 @@