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
@ -53,34 +53,34 @@ public class KeygenLicenseVerifier {
|
||||
}
|
||||
|
||||
public License verifyLicense(String licenseKeyOrCert) {
|
||||
License license;
|
||||
License license;
|
||||
|
||||
if (isCertificateLicense(licenseKeyOrCert)) {
|
||||
log.info("Detected certificate-based license. Processing...");
|
||||
boolean isValid = verifyCertificateLicense(licenseKeyOrCert);
|
||||
if (isValid) {
|
||||
license = isEnterpriseLicense ? License.ENTERPRISE : License.PRO;
|
||||
} else {
|
||||
license = License.NORMAL;
|
||||
}
|
||||
} else if (isJWTLicense(licenseKeyOrCert)) {
|
||||
log.info("Detected JWT-style license key. Processing...");
|
||||
boolean isValid = verifyJWTLicense(licenseKeyOrCert);
|
||||
if (isValid) {
|
||||
license = isEnterpriseLicense ? License.ENTERPRISE : License.PRO;
|
||||
} else {
|
||||
license = License.NORMAL;
|
||||
}
|
||||
} else {
|
||||
log.info("Detected standard license key. Processing...");
|
||||
boolean isValid = verifyStandardLicense(licenseKeyOrCert);
|
||||
if (isValid) {
|
||||
license = isEnterpriseLicense ? License.ENTERPRISE : License.PRO;
|
||||
} else {
|
||||
license = License.NORMAL;
|
||||
}
|
||||
}
|
||||
return license;
|
||||
if (isCertificateLicense(licenseKeyOrCert)) {
|
||||
log.info("Detected certificate-based license. Processing...");
|
||||
boolean isValid = verifyCertificateLicense(licenseKeyOrCert);
|
||||
if (isValid) {
|
||||
license = isEnterpriseLicense ? License.ENTERPRISE : License.PRO;
|
||||
} else {
|
||||
license = License.NORMAL;
|
||||
}
|
||||
} else if (isJWTLicense(licenseKeyOrCert)) {
|
||||
log.info("Detected JWT-style license key. Processing...");
|
||||
boolean isValid = verifyJWTLicense(licenseKeyOrCert);
|
||||
if (isValid) {
|
||||
license = isEnterpriseLicense ? License.ENTERPRISE : License.PRO;
|
||||
} else {
|
||||
license = License.NORMAL;
|
||||
}
|
||||
} else {
|
||||
log.info("Detected standard license key. Processing...");
|
||||
boolean isValid = verifyStandardLicense(licenseKeyOrCert);
|
||||
if (isValid) {
|
||||
license = isEnterpriseLicense ? License.ENTERPRISE : License.PRO;
|
||||
} else {
|
||||
license = License.NORMAL;
|
||||
}
|
||||
}
|
||||
return license;
|
||||
}
|
||||
|
||||
private boolean isEnterpriseLicense = false;
|
||||
@ -194,7 +194,6 @@ public class KeygenLicenseVerifier {
|
||||
private boolean processCertificateData(String certData) {
|
||||
try {
|
||||
|
||||
|
||||
JSONObject licenseData = new JSONObject(certData);
|
||||
JSONObject metaObj = licenseData.optJSONObject("meta");
|
||||
if (metaObj != null) {
|
||||
@ -411,7 +410,6 @@ public class KeygenLicenseVerifier {
|
||||
log.info("Using default of 1 user for license");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -20,8 +20,6 @@ import org.springframework.core.io.Resource;
|
||||
import org.springframework.core.io.ResourceLoader;
|
||||
import org.thymeleaf.spring6.SpringTemplateEngine;
|
||||
|
||||
import com.posthog.java.shaded.kotlin.text.Regex;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import stirling.software.SPDF.model.ApplicationProperties;
|
||||
|
@ -1,32 +1,34 @@
|
||||
package stirling.software.SPDF.controller.web;
|
||||
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import stirling.software.SPDF.model.ApplicationProperties;
|
||||
|
||||
import java.util.regex.Pattern;
|
||||
import stirling.software.SPDF.model.ApplicationProperties;
|
||||
|
||||
@Service
|
||||
@Slf4j
|
||||
public class UploadLimitService {
|
||||
|
||||
@Autowired
|
||||
private ApplicationProperties applicationProperties;
|
||||
@Autowired private ApplicationProperties applicationProperties;
|
||||
|
||||
public long getUploadLimit() {
|
||||
String maxUploadSize =
|
||||
applicationProperties.getSystem().getFileUploadLimit() != null
|
||||
? applicationProperties.getSystem().getFileUploadLimit()
|
||||
: "";
|
||||
applicationProperties.getSystem().getFileUploadLimit() != null
|
||||
? applicationProperties.getSystem().getFileUploadLimit()
|
||||
: "";
|
||||
|
||||
if (maxUploadSize.isEmpty()) {
|
||||
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(
|
||||
"Invalid maxUploadSize format. Expected format: [1-9][0-9]{0,2}[KMGkmg][Bb], but got: {}",
|
||||
maxUploadSize);
|
||||
"Invalid maxUploadSize format. Expected format: [1-9][0-9]{0,2}[KMGkmg][Bb], but got: {}",
|
||||
maxUploadSize);
|
||||
return 0;
|
||||
} else {
|
||||
String unit = maxUploadSize.replaceAll("[1-9][0-9]{0,2}", "").toUpperCase();
|
||||
@ -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() {
|
||||
return humanReadableByteCount(getUploadLimit());
|
||||
}
|
||||
|
@ -1430,3 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
||||
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.
|
||||
|
||||
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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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