mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-09-12 17:52:13 +02:00
Fix missing languages
This commit is contained in:
parent
36e1c5fb84
commit
348c64bc2c
@ -194,7 +194,6 @@ public class KeygenLicenseVerifier {
|
|||||||
private boolean processCertificateData(String certData) {
|
private boolean processCertificateData(String certData) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
|
||||||
JSONObject licenseData = new JSONObject(certData);
|
JSONObject licenseData = new JSONObject(certData);
|
||||||
JSONObject metaObj = licenseData.optJSONObject("meta");
|
JSONObject metaObj = licenseData.optJSONObject("meta");
|
||||||
if (metaObj != null) {
|
if (metaObj != null) {
|
||||||
@ -411,7 +410,6 @@ public class KeygenLicenseVerifier {
|
|||||||
log.info("Using default of 1 user for license");
|
log.info("Using default of 1 user for license");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -20,8 +20,6 @@ import org.springframework.core.io.Resource;
|
|||||||
import org.springframework.core.io.ResourceLoader;
|
import org.springframework.core.io.ResourceLoader;
|
||||||
import org.thymeleaf.spring6.SpringTemplateEngine;
|
import org.thymeleaf.spring6.SpringTemplateEngine;
|
||||||
|
|
||||||
import com.posthog.java.shaded.kotlin.text.Regex;
|
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
import stirling.software.SPDF.model.ApplicationProperties;
|
import stirling.software.SPDF.model.ApplicationProperties;
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
package stirling.software.SPDF.controller.web;
|
package stirling.software.SPDF.controller.web;
|
||||||
|
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import stirling.software.SPDF.model.ApplicationProperties;
|
|
||||||
|
|
||||||
import java.util.regex.Pattern;
|
import stirling.software.SPDF.model.ApplicationProperties;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public class UploadLimitService {
|
public class UploadLimitService {
|
||||||
|
|
||||||
@Autowired
|
@Autowired private ApplicationProperties applicationProperties;
|
||||||
private ApplicationProperties applicationProperties;
|
|
||||||
|
|
||||||
public long getUploadLimit() {
|
public long getUploadLimit() {
|
||||||
String maxUploadSize =
|
String maxUploadSize =
|
||||||
@ -23,7 +23,9 @@ public class UploadLimitService {
|
|||||||
|
|
||||||
if (maxUploadSize.isEmpty()) {
|
if (maxUploadSize.isEmpty()) {
|
||||||
return 0;
|
return 0;
|
||||||
} else if (!Pattern.compile("^[1-9][0-9]{0,2}[KMGkmg][Bb]$").matcher(maxUploadSize).matches()) {
|
} else if (!Pattern.compile("^[1-9][0-9]{0,2}[KMGkmg][Bb]$")
|
||||||
|
.matcher(maxUploadSize)
|
||||||
|
.matches()) {
|
||||||
log.error(
|
log.error(
|
||||||
"Invalid maxUploadSize format. Expected format: [1-9][0-9]{0,2}[KMGkmg][Bb], but got: {}",
|
"Invalid maxUploadSize format. Expected format: [1-9][0-9]{0,2}[KMGkmg][Bb], but got: {}",
|
||||||
maxUploadSize);
|
maxUploadSize);
|
||||||
@ -41,7 +43,7 @@ public class UploadLimitService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: why do this server side not client?
|
// TODO: why do this server side not client?
|
||||||
public String getReadableUploadLimit() {
|
public String getReadableUploadLimit() {
|
||||||
return humanReadableByteCount(getUploadLimit());
|
return humanReadableByteCount(getUploadLimit());
|
||||||
}
|
}
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=Questi cookie sono essenzial
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=Questi cookie ci aiutano a capire come vengono utilizzati i nostri strumenti, così possiamo concentrarci sullo sviluppo delle funzionalità che la nostra community apprezza di più. Non preoccuparti: Stirling PDF non può e non traccerà mai il contenuto dei documenti con cui lavori.
|
cookieBanner.preferencesModal.analytics.description=Questi cookie ci aiutano a capire come vengono utilizzati i nostri strumenti, così possiamo concentrarci sullo sviluppo delle funzionalità che la nostra community apprezza di più. Non preoccuparti: Stirling PDF non può e non traccerà mai il contenuto dei documenti con cui lavori.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=Estes cookies são essenciai
|
|||||||
cookieBanner.preferencesModal.analytics.title=Cookies Analíticos
|
cookieBanner.preferencesModal.analytics.title=Cookies Analíticos
|
||||||
cookieBanner.preferencesModal.analytics.description=Estes cookies nos ajudam a entender como nossas ferramentas estão sendo utilizadas, para que possamos nos concentrar na construção dos recursos que nossa comunidade mais valoriza. Fique tranquilo: o Stirling PDF não pode e nunca rastreará o conteúdo dos documentos com os quais você manipula.
|
cookieBanner.preferencesModal.analytics.description=Estes cookies nos ajudam a entender como nossas ferramentas estão sendo utilizadas, para que possamos nos concentrar na construção dos recursos que nossa comunidade mais valoriza. Fique tranquilo: o Stirling PDF não pode e nunca rastreará o conteúdo dos documentos com os quais você manipula.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=Bu çerezler, web sitesinin
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analitik
|
cookieBanner.preferencesModal.analytics.title=Analitik
|
||||||
cookieBanner.preferencesModal.analytics.description=Bu çerezler, araçlarımızın nasıl kullanıldığını anlamamıza yardımcı olur, böylece topluluğumuzun en çok değer verdiği özellikleri geliştirmeye odaklanabiliriz. İçiniz rahat olsun — Stirling PDF, belgelerinizin içeriğini asla takip etmez ve etmeyecektir.
|
cookieBanner.preferencesModal.analytics.description=Bu çerezler, araçlarımızın nasıl kullanıldığını anlamamıza yardımcı olur, böylece topluluğumuzun en çok değer verdiği özellikleri geliştirmeye odaklanabiliriz. İçiniz rahat olsun — Stirling PDF, belgelerinizin içeriğini asla takip etmez ve etmeyecektir.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=這些 Cookies 對網站正
|
|||||||
cookieBanner.preferencesModal.analytics.title=分析 Cookies
|
cookieBanner.preferencesModal.analytics.title=分析 Cookies
|
||||||
cookieBanner.preferencesModal.analytics.description=這些 Cookies 幫助我們分析您如何使用我們的工具,好讓我們能專注在構建社群最重視的功能。儘管放心—— Stirling PDF 不會且永不追蹤您的文件
|
cookieBanner.preferencesModal.analytics.description=這些 Cookies 幫助我們分析您如何使用我們的工具,好讓我們能專注在構建社群最重視的功能。儘管放心—— Stirling PDF 不會且永不追蹤您的文件
|
||||||
|
|
||||||
|
home.removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||||
|
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||||
|
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.header=Remove Read-Only from Form Fields
|
||||||
|
removeReadOnly.submit=Remove
|
||||||
|
Loading…
Reference in New Issue
Block a user