diff --git a/.github/workflows/check_properties.yml b/.github/workflows/check_properties.yml
index 2e9ee8cbe..9598351a5 100644
--- a/.github/workflows/check_properties.yml
+++ b/.github/workflows/check_properties.yml
@@ -61,7 +61,20 @@ jobs:
run: |
echo "Fetching PR changed files..."
echo "Getting list of changed files from PR..."
- gh pr view ${{ steps.get-pr-data.outputs.pr_number }} --json files -q ".files[].path" | grep -E '^stirling-pdf/src/main/resources/messages_[a-zA-Z_]{2}_[a-zA-Z_]{2,7}\.properties$' > changed_files.txt # Filter only matching property files
+ # Check if PR number exists
+ if [ -z "${{ steps.get-pr-data.outputs.pr_number }}" ]; then
+ echo "Error: PR number is empty"
+ exit 1
+ fi
+ # Get changed files and filter for properties files, handle case where no matches are found
+ gh pr view ${{ steps.get-pr-data.outputs.pr_number }} --json files -q ".files[].path" | grep -E '^stirling-pdf/src/main/resources/messages_[a-zA-Z_]{2}_[a-zA-Z_]{2,7}\.properties$' > changed_files.txt || echo "No matching properties files found in PR"
+ # Check if any files were found
+ if [ ! -s changed_files.txt ]; then
+ echo "No properties files changed in this PR"
+ echo "Workflow will exit early as no relevant files to check"
+ exit 0
+ fi
+ echo "Found $(wc -l < changed_files.txt) matching properties files"
- name: Determine reference file test
id: determine-file
@@ -103,7 +116,7 @@ jobs:
// Filter for relevant files based on the PR changes
const changedFiles = files
.map(file => file.filename)
- .filter(file => /^src\/main\/resources\/messages_[a-zA-Z_]{2}_[a-zA-Z_]{2,7}\.properties$/.test(file));
+ .filter(file => /^stirling-pdf\src\/main\/resources\/messages_[a-zA-Z_]{2}_[a-zA-Z_]{2,7}\.properties$/.test(file));
console.log("Changed files:", changedFiles);
diff --git a/DeveloperGuide.md b/DeveloperGuide.md
index fb0ec5585..d2c9ddb2a 100644
--- a/DeveloperGuide.md
+++ b/DeveloperGuide.md
@@ -137,9 +137,9 @@ services:
ports:
- "8080:8080"
volumes:
- - /stirling/latest/data:/usr/share/tessdata:rw
- - /stirling/latest/config:/configs:rw
- - /stirling/latest/logs:/logs:rw
+ - ./stirling/latest/data:/usr/share/tessdata:rw
+ - ./stirling/latest/config:/configs:rw
+ - ./stirling/latest/logs:/logs:rw
environment:
DISABLE_ADDITIONAL_FEATURES: "false"
SECURITY_ENABLELOGIN: "true"
diff --git a/common/.gitignore b/common/.gitignore
index 90d48ccea..7dbc0cee8 100644
--- a/common/.gitignore
+++ b/common/.gitignore
@@ -124,6 +124,7 @@ SwaggerDoc.json
*.rar
*.db
/build
+/common/build/
# Byte-compiled / optimized / DLL files
__pycache__/
diff --git a/exampleYmlFiles/docker-compose-latest-security-with-sso.yml b/exampleYmlFiles/docker-compose-latest-security-with-sso.yml
index 89d0fc94e..55ea0893d 100644
--- a/exampleYmlFiles/docker-compose-latest-security-with-sso.yml
+++ b/exampleYmlFiles/docker-compose-latest-security-with-sso.yml
@@ -14,9 +14,9 @@ services:
ports:
- "8080:8080"
volumes:
- - /stirling/latest/data:/usr/share/tessdata:rw
- - /stirling/latest/config:/configs:rw
- - /stirling/latest/logs:/logs:rw
+ - ./stirling/latest/data:/usr/share/tessdata:rw
+ - ./stirling/latest/config:/configs:rw
+ - ./stirling/latest/logs:/logs:rw
environment:
DISABLE_ADDITIONAL_FEATURES: "false"
SECURITY_ENABLELOGIN: "true"
diff --git a/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml b/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml
index c927ab706..fe839d941 100644
--- a/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml
+++ b/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml
@@ -14,9 +14,9 @@ services:
ports:
- "8080:8080"
volumes:
- - /stirling/latest/data:/usr/share/tessdata:rw
- - /stirling/latest/config:/configs:rw
- - /stirling/latest/logs:/logs:rw
+ - ./stirling/latest/data:/usr/share/tessdata:rw
+ - ./stirling/latest/config:/configs:rw
+ - ./stirling/latest/logs:/logs:rw
environment:
DISABLE_ADDITIONAL_FEATURES: "false"
SECURITY_ENABLELOGIN: "true"
diff --git a/exampleYmlFiles/docker-compose-latest-ultra-lite.yml b/exampleYmlFiles/docker-compose-latest-ultra-lite.yml
index d3e1b9759..14e78b2ff 100644
--- a/exampleYmlFiles/docker-compose-latest-ultra-lite.yml
+++ b/exampleYmlFiles/docker-compose-latest-ultra-lite.yml
@@ -14,8 +14,8 @@ services:
ports:
- "8080:8080"
volumes:
- - /stirling/latest/config:/configs:rw
- - /stirling/latest/logs:/logs:rw
+ - ./stirling/latest/config:/configs:rw
+ - ./stirling/latest/logs:/logs:rw
environment:
DISABLE_ADDITIONAL_FEATURES: "true"
SECURITY_ENABLELOGIN: "false"
diff --git a/exampleYmlFiles/docker-compose-latest.yml b/exampleYmlFiles/docker-compose-latest.yml
index d8b1aee74..2db962e32 100644
--- a/exampleYmlFiles/docker-compose-latest.yml
+++ b/exampleYmlFiles/docker-compose-latest.yml
@@ -14,9 +14,9 @@ services:
ports:
- "8080:8080"
volumes:
- - /stirling/latest/data:/usr/share/tessdata:rw
- - /stirling/latest/config:/configs:rw
- - /stirling/latest/logs:/logs:rw
+ - ./stirling/latest/data:/usr/share/tessdata:rw
+ - ./stirling/latest/config:/configs:rw
+ - ./stirling/latest/logs:/logs:rw
environment:
DISABLE_ADDITIONAL_FEATURES: "true"
SECURITY_ENABLELOGIN: "false"
diff --git a/exampleYmlFiles/test_cicd.yml b/exampleYmlFiles/test_cicd.yml
index 749e863a3..31e24da48 100644
--- a/exampleYmlFiles/test_cicd.yml
+++ b/exampleYmlFiles/test_cicd.yml
@@ -14,9 +14,9 @@ services:
ports:
- 8080:8080
volumes:
- - /stirling/latest/data:/usr/share/tessdata:rw
- - /stirling/latest/config:/configs:rw
- - /stirling/latest/logs:/logs:rw
+ - ./stirling/latest/data:/usr/share/tessdata:rw
+ - ./stirling/latest/config:/configs:rw
+ - ./stirling/latest/logs:/logs:rw
environment:
DISABLE_ADDITIONAL_FEATURES: "false"
SECURITY_ENABLELOGIN: "true"
diff --git a/proprietary/.gitignore b/proprietary/.gitignore
index 90d48ccea..e82af1e1b 100644
--- a/proprietary/.gitignore
+++ b/proprietary/.gitignore
@@ -124,6 +124,7 @@ SwaggerDoc.json
*.rar
*.db
/build
+/proprietary/build/
# Byte-compiled / optimized / DLL files
__pycache__/
diff --git a/stirling-pdf/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java b/proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/EEAppConfig.java
similarity index 97%
rename from stirling-pdf/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java
rename to proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/EEAppConfig.java
index 9ed53084b..55c59f6bc 100644
--- a/stirling-pdf/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java
+++ b/proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/EEAppConfig.java
@@ -1,6 +1,6 @@
-package stirling.software.SPDF.EE;
+package stirling.software.proprietary.security.configuration.ee;
-import static stirling.software.SPDF.EE.KeygenLicenseVerifier.License;
+import static stirling.software.proprietary.security.configuration.ee.KeygenLicenseVerifier.License;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
diff --git a/stirling-pdf/src/main/java/stirling/software/SPDF/EE/KeygenLicenseVerifier.java b/proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/KeygenLicenseVerifier.java
similarity index 99%
rename from stirling-pdf/src/main/java/stirling/software/SPDF/EE/KeygenLicenseVerifier.java
rename to proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/KeygenLicenseVerifier.java
index 4e590864f..969385a33 100644
--- a/stirling-pdf/src/main/java/stirling/software/SPDF/EE/KeygenLicenseVerifier.java
+++ b/proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/KeygenLicenseVerifier.java
@@ -1,4 +1,4 @@
-package stirling.software.SPDF.EE;
+package stirling.software.proprietary.security.configuration.ee;
import java.net.URI;
import java.net.http.HttpClient;
diff --git a/stirling-pdf/src/main/java/stirling/software/SPDF/EE/LicenseKeyChecker.java b/proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/LicenseKeyChecker.java
similarity index 95%
rename from stirling-pdf/src/main/java/stirling/software/SPDF/EE/LicenseKeyChecker.java
rename to proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/LicenseKeyChecker.java
index 9ea6a5b03..15baef7db 100644
--- a/stirling-pdf/src/main/java/stirling/software/SPDF/EE/LicenseKeyChecker.java
+++ b/proprietary/src/main/java/stirling/software/proprietary/security/configuration/ee/LicenseKeyChecker.java
@@ -1,4 +1,4 @@
-package stirling.software.SPDF.EE;
+package stirling.software.proprietary.security.configuration.ee;
import java.io.IOException;
import java.nio.file.Files;
@@ -10,9 +10,9 @@ import org.springframework.stereotype.Component;
import lombok.extern.slf4j.Slf4j;
-import stirling.software.SPDF.EE.KeygenLicenseVerifier.License;
import stirling.software.common.model.ApplicationProperties;
import stirling.software.common.util.GeneralUtils;
+import stirling.software.proprietary.security.configuration.ee.KeygenLicenseVerifier.License;
@Slf4j
@Component
diff --git a/stirling-pdf/src/test/java/stirling/software/SPDF/EE/LicenseKeyCheckerTest.java b/proprietary/src/test/java/stirling/software/proprietary/security/configuration/ee/LicenseKeyCheckerTest.java
similarity index 94%
rename from stirling-pdf/src/test/java/stirling/software/SPDF/EE/LicenseKeyCheckerTest.java
rename to proprietary/src/test/java/stirling/software/proprietary/security/configuration/ee/LicenseKeyCheckerTest.java
index 7c9ab6207..4a6e7ad65 100644
--- a/stirling-pdf/src/test/java/stirling/software/SPDF/EE/LicenseKeyCheckerTest.java
+++ b/proprietary/src/test/java/stirling/software/proprietary/security/configuration/ee/LicenseKeyCheckerTest.java
@@ -1,10 +1,10 @@
-package stirling.software.SPDF.EE;
+package stirling.software.proprietary.security.configuration.ee;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoInteractions;
import static org.mockito.Mockito.when;
-import static stirling.software.SPDF.EE.KeygenLicenseVerifier.License;
+import static stirling.software.proprietary.security.configuration.ee.KeygenLicenseVerifier.License;
import java.io.IOException;
import java.nio.file.Files;
diff --git a/stirling-pdf/.gitignore b/stirling-pdf/.gitignore
index 90d48ccea..2baeac4dc 100644
--- a/stirling-pdf/.gitignore
+++ b/stirling-pdf/.gitignore
@@ -124,6 +124,7 @@ SwaggerDoc.json
*.rar
*.db
/build
+/stirling-pdf/build/
# Byte-compiled / optimized / DLL files
__pycache__/
diff --git a/stirling-pdf/build/resources/main/messages_ar_AR.properties b/stirling-pdf/build/resources/main/messages_ar_AR.properties
index 78f42cafa..5527cc516 100644
--- a/stirling-pdf/build/resources/main/messages_ar_AR.properties
+++ b/stirling-pdf/build/resources/main/messages_ar_AR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=الحصول على معلومات عن PDF
getPdfInfo.header=الحصول على معلومات عن PDF
getPdfInfo.submit=الحصول على المعلومات
getPdfInfo.downloadJson=تحميل JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_az_AZ.properties b/stirling-pdf/build/resources/main/messages_az_AZ.properties
index 7a47878b0..fed104c4d 100644
--- a/stirling-pdf/build/resources/main/messages_az_AZ.properties
+++ b/stirling-pdf/build/resources/main/messages_az_AZ.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=PDF Barəsində Məlumat Əldə Et
getPdfInfo.header=PDF Barəsində Məlumat Əldə Et
getPdfInfo.submit=Məlumat Əldə Et
getPdfInfo.downloadJson=JSON yüklə
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_bg_BG.properties b/stirling-pdf/build/resources/main/messages_bg_BG.properties
index 9230985ce..f66be7c6c 100644
--- a/stirling-pdf/build/resources/main/messages_bg_BG.properties
+++ b/stirling-pdf/build/resources/main/messages_bg_BG.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Вземете информация за PDF
getPdfInfo.header=Вземете информация за PDF
getPdfInfo.submit=Вземете информация
getPdfInfo.downloadJson=Изтеглете JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_ca_CA.properties b/stirling-pdf/build/resources/main/messages_ca_CA.properties
index 271fddff5..b784388af 100644
--- a/stirling-pdf/build/resources/main/messages_ca_CA.properties
+++ b/stirling-pdf/build/resources/main/messages_ca_CA.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Obteniu Informació del PDF
getPdfInfo.header=Obteniu Informació del PDF
getPdfInfo.submit=Obteniu Informació
getPdfInfo.downloadJson=Descarrega JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_cs_CZ.properties b/stirling-pdf/build/resources/main/messages_cs_CZ.properties
index 5dccf032f..462ae0221 100644
--- a/stirling-pdf/build/resources/main/messages_cs_CZ.properties
+++ b/stirling-pdf/build/resources/main/messages_cs_CZ.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Získat informace o PDF
getPdfInfo.header=Získat informace o PDF
getPdfInfo.submit=Získat informace
getPdfInfo.downloadJson=Stáhnout JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_da_DK.properties b/stirling-pdf/build/resources/main/messages_da_DK.properties
index 309ea1748..0f92ad2db 100644
--- a/stirling-pdf/build/resources/main/messages_da_DK.properties
+++ b/stirling-pdf/build/resources/main/messages_da_DK.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Få Info om PDF
getPdfInfo.header=Få Info om PDF
getPdfInfo.submit=Få Info
getPdfInfo.downloadJson=Download JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_en_GB.properties b/stirling-pdf/build/resources/main/messages_en_GB.properties
index 6b2935747..56b1559c0 100644
--- a/stirling-pdf/build/resources/main/messages_en_GB.properties
+++ b/stirling-pdf/build/resources/main/messages_en_GB.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Get Info on PDF
getPdfInfo.header=Get Info on PDF
getPdfInfo.submit=Get Info
getPdfInfo.downloadJson=Download JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_en_US.properties b/stirling-pdf/build/resources/main/messages_en_US.properties
index 2176814bc..1b21ed391 100644
--- a/stirling-pdf/build/resources/main/messages_en_US.properties
+++ b/stirling-pdf/build/resources/main/messages_en_US.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Get Info on PDF
getPdfInfo.header=Get Info on PDF
getPdfInfo.submit=Get Info
getPdfInfo.downloadJson=Download JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_es_ES.properties b/stirling-pdf/build/resources/main/messages_es_ES.properties
index 9442e3d8f..6fe8ef345 100644
--- a/stirling-pdf/build/resources/main/messages_es_ES.properties
+++ b/stirling-pdf/build/resources/main/messages_es_ES.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Obtener Información del PDF
getPdfInfo.header=Obtener Información del PDF
getPdfInfo.submit=Obtener Información
getPdfInfo.downloadJson=Descargar JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_eu_ES.properties b/stirling-pdf/build/resources/main/messages_eu_ES.properties
index e35abae90..b865e1276 100644
--- a/stirling-pdf/build/resources/main/messages_eu_ES.properties
+++ b/stirling-pdf/build/resources/main/messages_eu_ES.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Lortu informazioa PDFn
getPdfInfo.header=Lortu informazioa PDFn
getPdfInfo.submit=Lortu informazioa
getPdfInfo.downloadJson=Deskargatu JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_fa_IR.properties b/stirling-pdf/build/resources/main/messages_fa_IR.properties
index a0a8b0393..c668aab93 100644
--- a/stirling-pdf/build/resources/main/messages_fa_IR.properties
+++ b/stirling-pdf/build/resources/main/messages_fa_IR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=اطلاعات PDF را دریافت کنید
getPdfInfo.header=اطلاعات PDF را دریافت کنید
getPdfInfo.submit=دریافت اطلاعات
getPdfInfo.downloadJson=دانلود JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_fr_FR.properties b/stirling-pdf/build/resources/main/messages_fr_FR.properties
index 1944cd20d..0ae596229 100644
--- a/stirling-pdf/build/resources/main/messages_fr_FR.properties
+++ b/stirling-pdf/build/resources/main/messages_fr_FR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Récupérer les informations
getPdfInfo.header=Récupérer les informations
getPdfInfo.submit=Récupérer les informations
getPdfInfo.downloadJson=Télécharger le JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_ga_IE.properties b/stirling-pdf/build/resources/main/messages_ga_IE.properties
index b6fca57cb..7cb3ee6e2 100644
--- a/stirling-pdf/build/resources/main/messages_ga_IE.properties
+++ b/stirling-pdf/build/resources/main/messages_ga_IE.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Faigh eolas ar PDF
getPdfInfo.header=Faigh eolas ar PDF
getPdfInfo.submit=Faigh Eolas
getPdfInfo.downloadJson=Íosluchtaigh ceol JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_hi_IN.properties b/stirling-pdf/build/resources/main/messages_hi_IN.properties
index d00773452..578ba4ae9 100644
--- a/stirling-pdf/build/resources/main/messages_hi_IN.properties
+++ b/stirling-pdf/build/resources/main/messages_hi_IN.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=PDF की जानकारी प्राप्त कर
getPdfInfo.header=PDF की जानकारी प्राप्त करें
getPdfInfo.submit=जानकारी प्राप्त करें
getPdfInfo.downloadJson=JSON डाउनलोड करें
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_hr_HR.properties b/stirling-pdf/build/resources/main/messages_hr_HR.properties
index 0cb13abb8..025e8050c 100644
--- a/stirling-pdf/build/resources/main/messages_hr_HR.properties
+++ b/stirling-pdf/build/resources/main/messages_hr_HR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Informacije o PDF-u
getPdfInfo.header=Informacije o PDF-u
getPdfInfo.submit=Informacije
getPdfInfo.downloadJson=Preuzmite JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_hu_HU.properties b/stirling-pdf/build/resources/main/messages_hu_HU.properties
index f475edbf6..8dda0cef0 100644
--- a/stirling-pdf/build/resources/main/messages_hu_HU.properties
+++ b/stirling-pdf/build/resources/main/messages_hu_HU.properties
@@ -3,6 +3,138 @@
###########
# the direction that the language is written (ltr = left to right, rtl = right to left)
language.direction=ltr
+
+# Language names for reuse throughout the application
+lang.afr=Afrikaans
+lang.amh=Amharic
+lang.ara=Arabic
+lang.asm=Assamese
+lang.aze=Azerbaijani
+lang.aze_cyrl=Azerbaijani (Cyrillic)
+lang.bel=Belarusian
+lang.ben=Bengali
+lang.bod=Tibetan
+lang.bos=Bosnian
+lang.bre=Breton
+lang.bul=Bulgarian
+lang.cat=Catalan
+lang.ceb=Cebuano
+lang.ces=Czech
+lang.chi_sim=Chinese (Simplified)
+lang.chi_sim_vert=Chinese (Simplified, Vertical)
+lang.chi_tra=Chinese (Traditional)
+lang.chi_tra_vert=Chinese (Traditional, Vertical)
+lang.chr=Cherokee
+lang.cos=Corsican
+lang.cym=Welsh
+lang.dan=Danish
+lang.dan_frak=Danish (Fraktur)
+lang.deu=German
+lang.deu_frak=German (Fraktur)
+lang.div=Divehi
+lang.dzo=Dzongkha
+lang.ell=Greek
+lang.eng=English
+lang.enm=English, Middle (1100-1500)
+lang.epo=Esperanto
+lang.equ=Math / equation detection module
+lang.est=Estonian
+lang.eus=Basque
+lang.fao=Faroese
+lang.fas=Persian
+lang.fil=Filipino
+lang.fin=Finnish
+lang.fra=French
+lang.frk=Frankish
+lang.frm=French, Middle (ca.1400-1600)
+lang.fry=Western Frisian
+lang.gla=Scottish Gaelic
+lang.gle=Irish
+lang.glg=Galician
+lang.grc=Ancient Greek
+lang.guj=Gujarati
+lang.hat=Haitian, Haitian Creole
+lang.heb=Hebrew
+lang.hin=Hindi
+lang.hrv=Croatian
+lang.hun=Hungarian
+lang.hye=Armenian
+lang.iku=Inuktitut
+lang.ind=Indonesian
+lang.isl=Icelandic
+lang.ita=Italian
+lang.ita_old=Italian (Old)
+lang.jav=Javanese
+lang.jpn=Japanese
+lang.jpn_vert=Japanese (Vertical)
+lang.kan=Kannada
+lang.kat=Georgian
+lang.kat_old=Georgian (Old)
+lang.kaz=Kazakh
+lang.khm=Central Khmer
+lang.kir=Kirghiz, Kyrgyz
+lang.kmr=Northern Kurdish
+lang.kor=Korean
+lang.kor_vert=Korean (Vertical)
+lang.lao=Lao
+lang.lat=Latin
+lang.lav=Latvian
+lang.lit=Lithuanian
+lang.ltz=Luxembourgish
+lang.mal=Malayalam
+lang.mar=Marathi
+lang.mkd=Macedonian
+lang.mlt=Maltese
+lang.mon=Mongolian
+lang.mri=Maori
+lang.msa=Malay
+lang.mya=Burmese
+lang.nep=Nepali
+lang.nld=Dutch; Flemish
+lang.nor=Norwegian
+lang.oci=Occitan (post 1500)
+lang.ori=Oriya
+lang.osd=Orientation and script detection module
+lang.pan=Panjabi, Punjabi
+lang.pol=Polish
+lang.por=Portuguese
+lang.pus=Pushto, Pashto
+lang.que=Quechua
+lang.ron=Romanian, Moldavian, Moldovan
+lang.rus=Russian
+lang.san=Sanskrit
+lang.sin=Sinhala, Sinhalese
+lang.slk=Slovak
+lang.slk_frak=Slovak (Fraktur)
+lang.slv=Slovenian
+lang.snd=Sindhi
+lang.spa=Spanish
+lang.spa_old=Spanish (Old)
+lang.sqi=Albanian
+lang.srp=Serbian
+lang.srp_latn=Serbian (Latin)
+lang.sun=Sundanese
+lang.swa=Swahili
+lang.swe=Swedish
+lang.syr=Syriac
+lang.tam=Tamil
+lang.tat=Tatar
+lang.tel=Telugu
+lang.tgk=Tajik
+lang.tgl=Tagalog
+lang.tha=Thai
+lang.tir=Tigrinya
+lang.ton=Tonga (Tonga Islands)
+lang.tur=Turkish
+lang.uig=Uighur, Uyghur
+lang.ukr=Ukrainian
+lang.urd=Urdu
+lang.uzb=Uzbek
+lang.uzb_cyrl=Uzbek (Cyrillic)
+lang.vie=Vietnamese
+lang.yid=Yiddish
+lang.yor=Yoruba
+
addPageNumbers.fontSize=Betűméret
addPageNumbers.fontName=Betűtípus
pdfPrompt=PDF-fájl kiválasztása
@@ -144,7 +276,7 @@ analytics.settings=Az analitikai beállításokat a config/settings.yml fájlban
# NAVBAR #
#############
navbar.favorite=Kedvencek
-navbar.recent=New and recently updated
+navbar.recent=Új és nemrég frissített
navbar.darkmode=Sötét mód
navbar.language=Nyelvek
navbar.settings=Beállítások
@@ -675,6 +807,28 @@ getPdfInfo.title=PDF információk lekérése
getPdfInfo.header=PDF információk lekérése
getPdfInfo.submit=Információk lekérése
getPdfInfo.downloadJson=JSON letöltése
+getPdfInfo.summary=PDF összefoglaló
+getPdfInfo.summary.encrypted=Ez a PDF titkosított, ezért problémák léphetnek fel egyes alkalmazásokkal
+getPdfInfo.summary.permissions=Ez a PDF {0} korlátozott jogosultsággal rendelkezik, ami korlátozhatja a vele végezhető műveleteket
+getPdfInfo.summary.compliance=Ez a PDF megfelel a(z) {0} szabványnak
+getPdfInfo.summary.basicInfo=Alapvető információk
+getPdfInfo.summary.docInfo=Dokumentum információk
+getPdfInfo.summary.encrypted.alert=Titkosított PDF - Ez a dokumentum jelszóval védett
+getPdfInfo.summary.not.encrypted.alert=Nem titkosított PDF - Nincs jelszavas védelem
+getPdfInfo.summary.permissions.alert=Korlátozott jogosultságok - {0} művelet nem engedélyezett
+getPdfInfo.summary.all.permissions.alert=Minden jogosultság engedélyezett
+getPdfInfo.summary.compliance.alert={0} megfelelő
+getPdfInfo.summary.no.compliance.alert=Nincs szabvány
+getPdfInfo.summary.security.section=Biztonsági állapot
+getPdfInfo.section.BasicInfo=A PDF dokumentum alapvető információi, beleértve a fájlméretet, oldalszámot és nyelvet
+getPdfInfo.section.Metadata=Dokumentum metaadatok, beleértve a címet, szerzőt, létrehozás dátumát és egyéb dokumentum tulajdonságokat
+getPdfInfo.section.DocumentInfo=A PDF dokumentum szerkezetére és verziójára vonatkozó technikai részletek
+getPdfInfo.section.Compliancy=PDF szabvány megfelelőségi információk (PDF/A, PDF/X, stb.)
+getPdfInfo.section.Encryption=A dokumentum biztonsági és titkosítási részletei
+getPdfInfo.section.Permissions=Dokumentum jogosultság beállítások, amelyek szabályozzák a végrehajtható műveleteket
+getPdfInfo.section.Other=További dokumentum komponensek, mint könyvjelzők, rétegek és beágyazott fájlok
+getPdfInfo.section.FormFields=A dokumentumban található interaktív űrlapmezők
+getPdfInfo.section.PerPageInfo=Részletes információk a dokumentum minden oldaláról
#markdown-to-pdf
@@ -894,8 +1048,8 @@ sign.last=Utolsó oldal
sign.next=Következő oldal
sign.previous=Előző oldal
sign.maintainRatio=Képarány fenntartása váltása
-sign.undo=Undo
-sign.redo=Redo
+sign.undo=Visszavonás
+sign.redo=Újra
#repair
repair.title=Javítás
@@ -1437,3 +1591,38 @@ cookieBanner.preferencesModal.necessary.description=Ezek a sütik elengedhetetle
cookieBanner.preferencesModal.analytics.title=Adatelemzések
cookieBanner.preferencesModal.analytics.description=Ezek a sütik segítenek megérteni, hogyan használják eszközeinket, így a közösségünk által leginkább értékelt funkciókra összpontosíthatunk. Nyugodt lehet-a Stirling PDF nem képes és soha nem is fog nyomon követni az Ön által használt dokumentumok tartalmát.
+#fakeScan
+fakeScan.title=Látszat szkennelés
+fakeScan.header=Látszat szkennelés
+fakeScan.description=Olyan PDF létrehozása, amely szkenneltnek tűnik
+fakeScan.selectPDF=PDF kiválasztása:
+fakeScan.quality=Szkennelési minőség
+fakeScan.quality.low=Alacsony
+fakeScan.quality.medium=Közepes
+fakeScan.quality.high=Magas
+fakeScan.rotation=Forgatási szög
+fakeScan.rotation.none=Nincs
+fakeScan.rotation.slight=Enyhe
+fakeScan.rotation.moderate=Mérsékelt
+fakeScan.rotation.severe=Erős
+fakeScan.submit=Látszat szkennelés létrehozása
+
+#home.fakeScan
+home.fakeScan.title=Látszat szkennelés
+home.fakeScan.desc=Olyan PDF létrehozása, amely szkenneltnek tűnik
+fakeScan.tags=szkennelés,szimuláció,valósághű,konvertálás
+
+# FakeScan advanced settings (frontend)
+fakeScan.advancedSettings=Haladó szkennelési beállítások engedélyezése
+fakeScan.colorspace=Színtér
+fakeScan.colorspace.grayscale=Szürkeárnyalatos
+fakeScan.colorspace.color=Színes
+fakeScan.border=Keret (px)
+fakeScan.rotate=Alapforgatás (fok)
+fakeScan.rotateVariance=Forgatási változó (fok)
+fakeScan.brightness=Fényerő
+fakeScan.contrast=Kontraszt
+fakeScan.blur=Elmosás
+fakeScan.noise=Zaj
+fakeScan.yellowish=Sárgás (régi papír szimulálása)
+fakeScan.resolution=Felbontás (DPI)
diff --git a/stirling-pdf/build/resources/main/messages_id_ID.properties b/stirling-pdf/build/resources/main/messages_id_ID.properties
index 243e705b0..6bccd4ada 100644
--- a/stirling-pdf/build/resources/main/messages_id_ID.properties
+++ b/stirling-pdf/build/resources/main/messages_id_ID.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Dapatkan Info tentang PDF
getPdfInfo.header=Dapatkan Info tentang PDF
getPdfInfo.submit=Dapatkan Info
getPdfInfo.downloadJson=Unduh JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_it_IT.properties b/stirling-pdf/build/resources/main/messages_it_IT.properties
index 9e2a54af4..2edbfafd8 100644
--- a/stirling-pdf/build/resources/main/messages_it_IT.properties
+++ b/stirling-pdf/build/resources/main/messages_it_IT.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Ottieni informazioni in PDF
getPdfInfo.header=Ottieni informazioni in PDF
getPdfInfo.submit=Ottieni informazioni
getPdfInfo.downloadJson=Scarica JSON
+getPdfInfo.summary=Riepilogo PDF
+getPdfInfo.summary.encrypted=Questo PDF è crittografato, quindi potrebbe presentare problemi con alcune applicazioni
+getPdfInfo.summary.permissions=Questo PDF ha {0} permessi limitati che potrebbero limitare le operazioni che puoi eseguire con esso
+getPdfInfo.summary.compliance=Questo PDF è conforme allo standard {0}
+getPdfInfo.summary.basicInfo=Informazioni di base
+getPdfInfo.summary.docInfo=Informazioni sul documento
+getPdfInfo.summary.encrypted.alert=PDF crittografato - Questo documento è protetto da password
+getPdfInfo.summary.not.encrypted.alert=PDF non crittografato - Nessuna protezione tramite password
+getPdfInfo.summary.permissions.alert=Autorizzazioni limitate: {0} azioni non sono consentite
+getPdfInfo.summary.all.permissions.alert=Tutti i permessi consentiti
+getPdfInfo.summary.compliance.alert={0} Conforme
+getPdfInfo.summary.no.compliance.alert=Nessuno standard di conformità
+getPdfInfo.summary.security.section=Stato di sicurezza
+getPdfInfo.section.BasicInfo=Informazioni di base sul documento PDF, tra cui dimensione del file, numero di pagine e lingua
+getPdfInfo.section.Metadata=Metadati del documento, inclusi titolo, autore, data di creazione e altre proprietà del documento
+getPdfInfo.section.DocumentInfo=Dettagli tecnici sulla struttura e la versione del documento PDF
+getPdfInfo.section.Compliancy=Informazioni sulla conformità agli standard PDF(PDF/A,PDF/X,ecc.)
+getPdfInfo.section.Encryption=Dettagli di sicurezza e crittografia del documento
+getPdfInfo.section.Permissions=Impostazioni di autorizzazione del documento che controllano quali azioni possono essere eseguite
+getPdfInfo.section.Other=Componenti aggiuntivi del documento come segnalibri, livelli e file incorporati
+getPdfInfo.section.FormFields=Campi modulo interattivi presenti nel documento
+getPdfInfo.section.PerPageInfo=Informazioni dettagliate su ogni pagina del documento
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_ko_KR.properties b/stirling-pdf/build/resources/main/messages_ko_KR.properties
index da4cadde4..25ae3ea53 100644
--- a/stirling-pdf/build/resources/main/messages_ko_KR.properties
+++ b/stirling-pdf/build/resources/main/messages_ko_KR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=PDF 정보 가져오기
getPdfInfo.header=PDF 정보 가져오기
getPdfInfo.submit=정보 가져오기
getPdfInfo.downloadJson=JSON 다운로드
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_nl_NL.properties b/stirling-pdf/build/resources/main/messages_nl_NL.properties
index d1fe5d050..31ae56787 100644
--- a/stirling-pdf/build/resources/main/messages_nl_NL.properties
+++ b/stirling-pdf/build/resources/main/messages_nl_NL.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Informatie over PDF ophalen
getPdfInfo.header=Informatie over PDF ophalen
getPdfInfo.submit=Haal informatie op
getPdfInfo.downloadJson=JSON downloaden
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_no_NB.properties b/stirling-pdf/build/resources/main/messages_no_NB.properties
index 120b2cd5a..0260d9029 100644
--- a/stirling-pdf/build/resources/main/messages_no_NB.properties
+++ b/stirling-pdf/build/resources/main/messages_no_NB.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Få Info om PDF
getPdfInfo.header=Få Info om PDF
getPdfInfo.submit=Få Info
getPdfInfo.downloadJson=Last ned JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_pl_PL.properties b/stirling-pdf/build/resources/main/messages_pl_PL.properties
index 1dd04dfdc..5de21f7f3 100644
--- a/stirling-pdf/build/resources/main/messages_pl_PL.properties
+++ b/stirling-pdf/build/resources/main/messages_pl_PL.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Pobierz informacje o pliku PDF
getPdfInfo.header=Pobierz informacje o pliku PDF
getPdfInfo.submit=Pobierz informacje
getPdfInfo.downloadJson=Pobierz JSON z zawartością
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_pt_BR.properties b/stirling-pdf/build/resources/main/messages_pt_BR.properties
index 35319d3e9..71f5b049f 100644
--- a/stirling-pdf/build/resources/main/messages_pt_BR.properties
+++ b/stirling-pdf/build/resources/main/messages_pt_BR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Obter Informações do PDF
getPdfInfo.header=Obter Informações do PDF
getPdfInfo.submit=Obter Informações
getPdfInfo.downloadJson=Baixar JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_pt_PT.properties b/stirling-pdf/build/resources/main/messages_pt_PT.properties
index aff420608..f3b7a05c8 100644
--- a/stirling-pdf/build/resources/main/messages_pt_PT.properties
+++ b/stirling-pdf/build/resources/main/messages_pt_PT.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Obter Informação do PDF
getPdfInfo.header=Obter Informação do PDF
getPdfInfo.submit=Obter Informação
getPdfInfo.downloadJson=Transferir JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_ro_RO.properties b/stirling-pdf/build/resources/main/messages_ro_RO.properties
index 8f43fa750..0ae13cf7f 100644
--- a/stirling-pdf/build/resources/main/messages_ro_RO.properties
+++ b/stirling-pdf/build/resources/main/messages_ro_RO.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Obține Informații despre PDF
getPdfInfo.header=Obține Informații despre PDF
getPdfInfo.submit=Obține Informații
getPdfInfo.downloadJson=Descarcă JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_ru_RU.properties b/stirling-pdf/build/resources/main/messages_ru_RU.properties
index 24743d85f..abca0af38 100644
--- a/stirling-pdf/build/resources/main/messages_ru_RU.properties
+++ b/stirling-pdf/build/resources/main/messages_ru_RU.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Получить информацию о PDF
getPdfInfo.header=Получить информацию о PDF
getPdfInfo.submit=Получить информацию
getPdfInfo.downloadJson=Скачать JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_sk_SK.properties b/stirling-pdf/build/resources/main/messages_sk_SK.properties
index 6b13ebbba..e18b2bc76 100644
--- a/stirling-pdf/build/resources/main/messages_sk_SK.properties
+++ b/stirling-pdf/build/resources/main/messages_sk_SK.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Získať informácie o PDF
getPdfInfo.header=Získať informácie o PDF
getPdfInfo.submit=Získať info
getPdfInfo.downloadJson=Stiahnuť JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_sl_SI.properties b/stirling-pdf/build/resources/main/messages_sl_SI.properties
index 1bd84b5f2..dbeba2776 100644
--- a/stirling-pdf/build/resources/main/messages_sl_SI.properties
+++ b/stirling-pdf/build/resources/main/messages_sl_SI.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Pridobite informacije o PDF-ju
getPdfInfo.header=Pridobite informacije o PDF-ju
getPdfInfo.submit=Pridobi informacije
getPdfInfo.downloadJson=Prenesite JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_sr_LATN_RS.properties b/stirling-pdf/build/resources/main/messages_sr_LATN_RS.properties
index 5f8cedab9..670ffc502 100644
--- a/stirling-pdf/build/resources/main/messages_sr_LATN_RS.properties
+++ b/stirling-pdf/build/resources/main/messages_sr_LATN_RS.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Informacije o PDF-u
getPdfInfo.header=Informacije o PDF-u
getPdfInfo.submit=Informacije
getPdfInfo.downloadJson=Preuzmi JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_sv_SE.properties b/stirling-pdf/build/resources/main/messages_sv_SE.properties
index 8e7d17877..7fbf86b7d 100644
--- a/stirling-pdf/build/resources/main/messages_sv_SE.properties
+++ b/stirling-pdf/build/resources/main/messages_sv_SE.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Hämta information om PDF
getPdfInfo.header=Hämta information om PDF
getPdfInfo.submit=Hämta information
getPdfInfo.downloadJson=Ladda ner JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_th_TH.properties b/stirling-pdf/build/resources/main/messages_th_TH.properties
index e434746ea..b5be77499 100644
--- a/stirling-pdf/build/resources/main/messages_th_TH.properties
+++ b/stirling-pdf/build/resources/main/messages_th_TH.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=รับข้อมูลเกี่ยวกับ PDF
getPdfInfo.header=รับข้อมูลเกี่ยวกับ PDF
getPdfInfo.submit=รับข้อมูล
getPdfInfo.downloadJson=ดาวน์โหลด JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_tr_TR.properties b/stirling-pdf/build/resources/main/messages_tr_TR.properties
index 2eeb85c08..3e0059a24 100644
--- a/stirling-pdf/build/resources/main/messages_tr_TR.properties
+++ b/stirling-pdf/build/resources/main/messages_tr_TR.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=PDF Hakkında Bilgi Al
getPdfInfo.header=PDF Hakkında Bilgi Al
getPdfInfo.submit=Bilgi Al
getPdfInfo.downloadJson=JSON İndir
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_uk_UA.properties b/stirling-pdf/build/resources/main/messages_uk_UA.properties
index 61b51c533..83e84f3d9 100644
--- a/stirling-pdf/build/resources/main/messages_uk_UA.properties
+++ b/stirling-pdf/build/resources/main/messages_uk_UA.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Отримати інформацію в PDF
getPdfInfo.header=Отримати інформацію в PDF
getPdfInfo.submit=Отримати інформацію
getPdfInfo.downloadJson=Завантажити JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_vi_VN.properties b/stirling-pdf/build/resources/main/messages_vi_VN.properties
index 4b3d75dd9..6f278576c 100644
--- a/stirling-pdf/build/resources/main/messages_vi_VN.properties
+++ b/stirling-pdf/build/resources/main/messages_vi_VN.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=Lấy thông tin PDF
getPdfInfo.header=Lấy thông tin PDF
getPdfInfo.submit=Lấy thông tin
getPdfInfo.downloadJson=Tải xuống JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_zh_BO.properties b/stirling-pdf/build/resources/main/messages_zh_BO.properties
index aba9753df..2c8d4c06c 100644
--- a/stirling-pdf/build/resources/main/messages_zh_BO.properties
+++ b/stirling-pdf/build/resources/main/messages_zh_BO.properties
@@ -691,28 +691,6 @@ getPdfInfo.title=PDF ཡི་གནས་ཚུལ་ལེན་པ།
getPdfInfo.header=PDF ཡི་གནས་ཚུལ་ལེན་པ།
getPdfInfo.submit=གནས་ཚུལ་ལེན་པ།
getPdfInfo.downloadJson=JSON ཕབ་ལེན།
-getPdfInfo.summary=PDF Summary
-getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
-getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
-getPdfInfo.summary.compliance=This PDF complies with the {0} standard
-getPdfInfo.summary.basicInfo=Basic Information
-getPdfInfo.summary.docInfo=Document Information
-getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
-getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
-getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
-getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
-getPdfInfo.summary.compliance.alert={0} Compliant
-getPdfInfo.summary.no.compliance.alert=No Compliance Standards
-getPdfInfo.summary.security.section=Security Status
-getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
-getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
-getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
-getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
-getPdfInfo.section.Encryption=Security and encryption details of the document
-getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
-getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
-getPdfInfo.section.FormFields=Interactive form fields present in the document
-getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_zh_CN.properties b/stirling-pdf/build/resources/main/messages_zh_CN.properties
index e04c77fbd..d921af184 100644
--- a/stirling-pdf/build/resources/main/messages_zh_CN.properties
+++ b/stirling-pdf/build/resources/main/messages_zh_CN.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=获取 PDF 信息
getPdfInfo.header=获取 PDF 信息
getPdfInfo.submit=获取信息
getPdfInfo.downloadJson=下载 JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/messages_zh_TW.properties b/stirling-pdf/build/resources/main/messages_zh_TW.properties
index ea67d4ce3..48533fb25 100644
--- a/stirling-pdf/build/resources/main/messages_zh_TW.properties
+++ b/stirling-pdf/build/resources/main/messages_zh_TW.properties
@@ -675,6 +675,28 @@ getPdfInfo.title=取得 PDF 資訊
getPdfInfo.header=取得 PDF 資訊
getPdfInfo.submit=取得資訊
getPdfInfo.downloadJson=下載 JSON
+getPdfInfo.summary=PDF Summary
+getPdfInfo.summary.encrypted=This PDF is encrypted so may face issues with some applications
+getPdfInfo.summary.permissions=This PDF has {0} restricted permissions which may limit what you can do with it
+getPdfInfo.summary.compliance=This PDF complies with the {0} standard
+getPdfInfo.summary.basicInfo=Basic Information
+getPdfInfo.summary.docInfo=Document Information
+getPdfInfo.summary.encrypted.alert=Encrypted PDF - This document is password protected
+getPdfInfo.summary.not.encrypted.alert=Unencrypted PDF - No password protection
+getPdfInfo.summary.permissions.alert=Restricted Permissions - {0} actions are not allowed
+getPdfInfo.summary.all.permissions.alert=All Permissions Allowed
+getPdfInfo.summary.compliance.alert={0} Compliant
+getPdfInfo.summary.no.compliance.alert=No Compliance Standards
+getPdfInfo.summary.security.section=Security Status
+getPdfInfo.section.BasicInfo=Basic Information about the PDF document including file size, page count, and language
+getPdfInfo.section.Metadata=Document metadata including title, author, creation date and other document properties
+getPdfInfo.section.DocumentInfo=Technical details about the PDF document structure and version
+getPdfInfo.section.Compliancy=PDF standards compliance information (PDF/A, PDF/X, etc.)
+getPdfInfo.section.Encryption=Security and encryption details of the document
+getPdfInfo.section.Permissions=Document permission settings that control what actions can be performed
+getPdfInfo.section.Other=Additional document components like bookmarks, layers, and embedded files
+getPdfInfo.section.FormFields=Interactive form fields present in the document
+getPdfInfo.section.PerPageInfo=Detailed information about each page in the document
#markdown-to-pdf
diff --git a/stirling-pdf/build/resources/main/static/3rdPartyLicenses.json b/stirling-pdf/build/resources/main/static/3rdPartyLicenses.json
index b47393261..da8718489 100644
--- a/stirling-pdf/build/resources/main/static/3rdPartyLicenses.json
+++ b/stirling-pdf/build/resources/main/static/3rdPartyLicenses.json
@@ -45,77 +45,77 @@
{
"moduleName": "com.fasterxml.jackson.core:jackson-annotations",
"moduleUrl": "https://github.com/FasterXML/jackson",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.core:jackson-core",
"moduleUrl": "https://github.com/FasterXML/jackson-core",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.core:jackson-databind",
"moduleUrl": "https://github.com/FasterXML/jackson",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml",
"moduleUrl": "https://github.com/FasterXML/jackson-dataformats-text",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8",
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base",
"moduleUrl": "https://github.com/FasterXML/jackson-jaxrs-providers/jackson-jaxrs-base",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider",
"moduleUrl": "https://github.com/FasterXML/jackson-jaxrs-providers/jackson-jaxrs-json-provider",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations",
"moduleUrl": "https://github.com/FasterXML/jackson-modules-base",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names",
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "com.fasterxml.jackson:jackson-bom",
"moduleUrl": "https://github.com/FasterXML/jackson-bom",
- "moduleVersion": "2.19.0",
+ "moduleVersion": "2.18.3",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -161,20 +161,14 @@
{
"moduleName": "com.google.code.gson:gson",
"moduleUrl": "https://github.com/google/gson",
- "moduleVersion": "2.13.1",
+ "moduleVersion": "2.11.0",
"moduleLicense": "Apache-2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
- {
- "moduleName": "com.google.errorprone:error_prone_annotations",
- "moduleVersion": "2.11.0",
- "moduleLicense": "Apache 2.0",
- "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
- },
{
"moduleName": "com.google.errorprone:error_prone_annotations",
"moduleUrl": "https://errorprone.info/error_prone_annotations",
- "moduleVersion": "2.38.0",
+ "moduleVersion": "2.27.0",
"moduleLicense": "Apache 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -497,7 +491,7 @@
{
"moduleName": "com.zaxxer:HikariCP",
"moduleUrl": "https://github.com/brettwooldridge/HikariCP",
- "moduleVersion": "6.3.0",
+ "moduleVersion": "5.1.0",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -518,7 +512,7 @@
{
"moduleName": "commons-codec:commons-codec",
"moduleUrl": "https://commons.apache.org/proper/commons-codec/",
- "moduleVersion": "1.18.0",
+ "moduleVersion": "1.17.2",
"moduleLicense": "Apache-2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -529,20 +523,6 @@
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
- {
- "moduleName": "commons-io:commons-io",
- "moduleUrl": "https://commons.apache.org/proper/commons-io/",
- "moduleVersion": "2.11.0",
- "moduleLicense": "Apache License, Version 2.0",
- "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
- },
- {
- "moduleName": "commons-io:commons-io",
- "moduleUrl": "https://commons.apache.org/proper/commons-io/",
- "moduleVersion": "2.13.0",
- "moduleLicense": "Apache-2.0",
- "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
- },
{
"moduleName": "commons-io:commons-io",
"moduleUrl": "https://commons.apache.org/proper/commons-io/",
@@ -566,35 +546,35 @@
{
"moduleName": "io.micrometer:micrometer-commons",
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
- "moduleVersion": "1.15.0",
+ "moduleVersion": "1.14.6",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "io.micrometer:micrometer-core",
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
- "moduleVersion": "1.15.0",
+ "moduleVersion": "1.14.6",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "io.micrometer:micrometer-jakarta9",
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
- "moduleVersion": "1.15.0",
+ "moduleVersion": "1.14.6",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "io.micrometer:micrometer-observation",
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
- "moduleVersion": "1.15.0",
+ "moduleVersion": "1.14.6",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "io.micrometer:micrometer-registry-prometheus",
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
- "moduleVersion": "1.15.0",
+ "moduleVersion": "1.14.6",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -717,13 +697,6 @@
"moduleLicense": "GPL2 w/ CPE",
"moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html"
},
- {
- "moduleName": "jakarta.servlet:jakarta.servlet-api",
- "moduleUrl": "https://www.eclipse.org",
- "moduleVersion": "6.1.0",
- "moduleLicense": "GPL2 w/ CPE",
- "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html"
- },
{
"moduleName": "jakarta.transaction:jakarta.transaction-api",
"moduleUrl": "https://projects.eclipse.org/projects/ee4j.jta",
@@ -783,14 +756,14 @@
{
"moduleName": "me.friwi:jcef-api",
"moduleUrl": "https://bitbucket.org/chromiumembedded/java-cef/",
- "moduleVersion": "jcef-ca49ada+cef-135.0.20+ge7de5c3+chromium-135.0.7049.85",
+ "moduleVersion": "jcef-1770317+cef-132.3.1+g144febe+chromium-132.0.6834.83",
"moduleLicense": "BSD License",
"moduleLicenseUrl": "https://bitbucket.org/chromiumembedded/java-cef/src/master/LICENSE.txt"
},
{
"moduleName": "me.friwi:jcefmaven",
"moduleUrl": "https://github.com/jcefmaven/jcefmaven/",
- "moduleVersion": "135.0.20",
+ "moduleVersion": "132.3.1",
"moduleLicense": "Apache-2.0 License",
"moduleLicenseUrl": "https://github.com/jcefmaven/jcefmaven/blob/master/LICENSE"
},
@@ -803,7 +776,7 @@
},
{
"moduleName": "net.bytebuddy:byte-buddy",
- "moduleVersion": "1.17.5",
+ "moduleVersion": "1.15.11",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -862,13 +835,6 @@
"moduleLicense": "Apache-2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
- {
- "moduleName": "org.apache.commons:commons-text",
- "moduleUrl": "https://commons.apache.org/proper/commons-text",
- "moduleVersion": "1.10.0",
- "moduleLicense": "Apache License, Version 2.0",
- "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
- },
{
"moduleName": "org.apache.commons:commons-text",
"moduleUrl": "https://commons.apache.org/proper/commons-text",
@@ -953,7 +919,7 @@
{
"moduleName": "org.apache.tomcat.embed:tomcat-embed-el",
"moduleUrl": "https://tomcat.apache.org/",
- "moduleVersion": "10.1.41",
+ "moduleVersion": "10.1.40",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -966,14 +932,14 @@
},
{
"moduleName": "org.apache.xmlgraphics:batik-all",
- "moduleVersion": "1.19",
+ "moduleVersion": "1.18",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
{
"moduleName": "org.apache.xmlgraphics:xmlgraphics-commons",
"moduleUrl": "http://xmlgraphics.apache.org/commons/",
- "moduleVersion": "2.11",
+ "moduleVersion": "2.10",
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -991,13 +957,6 @@
"moduleLicense": "The Apache Software License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
- {
- "moduleName": "org.bouncycastle:bcpkix-jdk18on",
- "moduleUrl": "https://www.bouncycastle.org/java.html",
- "moduleVersion": "1.72",
- "moduleLicense": "Bouncy Castle Licence",
- "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html"
- },
{
"moduleName": "org.bouncycastle:bcpkix-jdk18on",
"moduleUrl": "https://www.bouncycastle.org/download/bouncy-castle-java/",
@@ -1012,13 +971,6 @@
"moduleLicense": "Bouncy Castle Licence",
"moduleLicenseUrl": "https://www.bouncycastle.org/licence.html"
},
- {
- "moduleName": "org.bouncycastle:bcutil-jdk18on",
- "moduleUrl": "https://www.bouncycastle.org/java.html",
- "moduleVersion": "1.72",
- "moduleLicense": "Bouncy Castle Licence",
- "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html"
- },
{
"moduleName": "org.bouncycastle:bcutil-jdk18on",
"moduleUrl": "https://www.bouncycastle.org/download/bouncy-castle-java/",
@@ -1069,182 +1021,182 @@
{
"moduleName": "org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jakarta-client",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jakarta-common",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jakarta-server",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jetty-server",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-servlet",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10:jetty-ee10-annotations",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10:jetty-ee10-plus",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10:jetty-ee10-servlet",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10:jetty-ee10-servlets",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.ee10:jetty-ee10-webapp",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.websocket:jetty-websocket-core-client",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.websocket:jetty-websocket-core-common",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.websocket:jetty-websocket-core-server",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.websocket:jetty-websocket-jetty-api",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty.websocket:jetty-websocket-jetty-common",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-alpn-client",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-client",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-ee",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-http",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-io",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-plus",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-security",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-server",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-session",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-util",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
{
"moduleName": "org.eclipse.jetty:jetty-xml",
"moduleUrl": "https://jetty.org/",
- "moduleVersion": "12.0.21",
+ "moduleVersion": "12.0.19",
"moduleLicense": "Eclipse Public License - Version 2.0",
"moduleLicenseUrl": "https://www.eclipse.org/legal/epl-2.0/"
},
@@ -1286,7 +1238,7 @@
{
"moduleName": "org.hibernate.orm:hibernate-core",
"moduleUrl": "https://www.hibernate.org/orm/6.6",
- "moduleVersion": "6.6.15.Final",
+ "moduleVersion": "6.6.13.Final",
"moduleLicense": "GNU Library General Public License v2.1 or later",
"moduleLicenseUrl": "https://www.opensource.org/licenses/LGPL-2.1"
},
@@ -1503,294 +1455,294 @@
{
"moduleName": "org.springframework.boot:spring-boot",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-actuator",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-actuator-autoconfigure",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-autoconfigure",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-devtools",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-actuator",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-data-jpa",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-jdbc",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-jetty",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-json",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-logging",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-mail",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-oauth2-client",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-security",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-thymeleaf",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-validation",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.boot:spring-boot-starter-web",
"moduleUrl": "https://spring.io/projects/spring-boot",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.data:spring-data-commons",
"moduleUrl": "https://spring.io/projects/spring-data",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.data:spring-data-jpa",
"moduleUrl": "https://projects.spring.io/spring-data-jpa",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-config",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-core",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-crypto",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-oauth2-client",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-oauth2-core",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-oauth2-jose",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-saml2-service-provider",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.security:spring-security-web",
"moduleUrl": "https://spring.io/projects/spring-security",
- "moduleVersion": "6.5.0",
+ "moduleVersion": "6.4.5",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework.session:spring-session-core",
"moduleUrl": "https://spring.io/projects/spring-session",
- "moduleVersion": "3.5.0",
+ "moduleVersion": "3.4.3",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-aop",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-aspects",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-beans",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-context",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-context-support",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-core",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-expression",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-jcl",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-jdbc",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-orm",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-tx",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-web",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"moduleName": "org.springframework:spring-webmvc",
"moduleUrl": "https://github.com/spring-projects/spring-framework",
- "moduleVersion": "6.2.7",
+ "moduleVersion": "6.2.6",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
},
@@ -1834,14 +1786,14 @@
{
"moduleName": "org.webjars:webjars-locator-lite",
"moduleUrl": "https://webjars.org",
- "moduleVersion": "1.1.0",
+ "moduleVersion": "1.0.1",
"moduleLicense": "MIT",
"moduleLicenseUrl": "https://github.com/webjars/webjars-locator-lite/blob/main/LICENSE.md"
},
{
"moduleName": "org.yaml:snakeyaml",
"moduleUrl": "https://bitbucket.org/snakeyaml/snakeyaml",
- "moduleVersion": "2.4",
+ "moduleVersion": "2.3",
"moduleLicense": "Apache License, Version 2.0",
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
},
@@ -1867,4 +1819,4 @@
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
]
-}
+}
\ No newline at end of file
diff --git a/stirling-pdf/build/resources/main/templates/security/get-info-on-pdf.html b/stirling-pdf/build/resources/main/templates/security/get-info-on-pdf.html
index 95a5ad391..97ddf723a 100644
--- a/stirling-pdf/build/resources/main/templates/security/get-info-on-pdf.html
+++ b/stirling-pdf/build/resources/main/templates/security/get-info-on-pdf.html
@@ -11,7 +11,7 @@