mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-09-12 17:52:13 +02:00
Change endpoint name
This commit is contained in:
parent
3975b4159c
commit
12aeac009c
@ -164,7 +164,7 @@ public class EndpointConfiguration {
|
||||
addEndpointToGroup("Other", "sign");
|
||||
addEndpointToGroup("Other", "flatten");
|
||||
addEndpointToGroup("Other", "repair");
|
||||
addEndpointToGroup("Other", "remove-read-only");
|
||||
addEndpointToGroup("Other", "unlock-pdf-forms");
|
||||
addEndpointToGroup("Other", REMOVE_BLANKS);
|
||||
addEndpointToGroup("Other", "remove-annotations");
|
||||
addEndpointToGroup("Other", "compare");
|
||||
|
@ -31,21 +31,21 @@ import stirling.software.SPDF.utils.WebResponseUtils;
|
||||
@RequestMapping("/api/v1/misc")
|
||||
@Slf4j
|
||||
@Tag(name = "Misc", description = "Miscellaneous APIs")
|
||||
public class RemoveReadOnlyController {
|
||||
public class UnlockPDFFormsController {
|
||||
private final CustomPDFDocumentFactory pdfDocumentFactory;
|
||||
|
||||
@Autowired
|
||||
public RemoveReadOnlyController(CustomPDFDocumentFactory pdfDocumentFactory) {
|
||||
public UnlockPDFFormsController(CustomPDFDocumentFactory pdfDocumentFactory) {
|
||||
this.pdfDocumentFactory = pdfDocumentFactory;
|
||||
}
|
||||
|
||||
@PostMapping(consumes = "multipart/form-data", value = "/remove-read-only")
|
||||
@PostMapping(consumes = "multipart/form-data", value = "/unlock-pdf-forms")
|
||||
@Operation(
|
||||
summary = "Remove read-only property from form fields",
|
||||
description =
|
||||
"Removing read-only property from form fields making them fillable"
|
||||
+ "Input:PDF, Output:PDF. Type:SISO")
|
||||
public ResponseEntity<byte[]> removeReadOnly(@ModelAttribute PDFFile file) {
|
||||
public ResponseEntity<byte[]> unlockPDFForms(@ModelAttribute PDFFile file) {
|
||||
try (PDDocument document = pdfDocumentFactory.load(file)) {
|
||||
PDAcroForm acroForm = document.getDocumentCatalog().getAcroForm();
|
||||
|
||||
@ -113,7 +113,7 @@ public class RemoveReadOnlyController {
|
||||
}
|
||||
String mergedFileName =
|
||||
file.getFileInput().getOriginalFilename().replaceFirst("[.][^.]+$", "")
|
||||
+ "_removed_readonly.pdf";
|
||||
+ "_unlocked_forms.pdf";
|
||||
return WebResponseUtils.pdfDocToWebResponse(
|
||||
document, Filenames.toSimpleFileName(mergedFileName));
|
||||
} catch (Exception e) {
|
@ -98,11 +98,11 @@ public class OtherWebController {
|
||||
return "misc/change-metadata";
|
||||
}
|
||||
|
||||
@GetMapping("/remove-read-only")
|
||||
@GetMapping("/unlock-pdf-forms")
|
||||
@Hidden
|
||||
public String removeReadOnlyForm(Model model) {
|
||||
model.addAttribute("currentPage", "remove-read-only");
|
||||
return "misc/remove-read-only";
|
||||
public String unlockPDFFormsForm(Model model) {
|
||||
model.addAttribute("currentPage", "unlock-pdf-forms");
|
||||
return "misc/unlock-pdf-forms";
|
||||
}
|
||||
|
||||
@GetMapping("/compare")
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=Diese Cookies sind für das
|
||||
cookieBanner.preferencesModal.analytics.title=Analyse
|
||||
cookieBanner.preferencesModal.analytics.description=Diese Cookies helfen uns zu verstehen, wie unsere Tools genutzt werden, damit wir uns darauf konzentrieren können, die Funktionen zu entwickeln, die unserer Community am meisten am Herzen liegen. Seien Sie beruhigt – Stirling PDF kann und wird niemals den Inhalt der Dokumente verfolgen, mit denen Sie arbeiten.
|
||||
|
||||
home.removeReadOnly.title=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -364,9 +364,9 @@ home.compressPdfs.title=Compress
|
||||
home.compressPdfs.desc=Compress PDFs to reduce their file size.
|
||||
compressPdfs.tags=squish,small,tiny
|
||||
|
||||
home.removeReadOnly.title=Unlock PDF Forms
|
||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
|
||||
home.changeMetadata.title=Change Metadata
|
||||
home.changeMetadata.desc=Change/Remove/Add metadata from a PDF document
|
||||
@ -1195,10 +1195,10 @@ changeMetadata.selectText.4=Other Metadata:
|
||||
changeMetadata.selectText.5=Add Custom Metadata Entry
|
||||
changeMetadata.submit=Change
|
||||
|
||||
#removeReadOnly
|
||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||
removeReadOnly.header=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
#unlockPDFForms
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
||||
#pdfToPDFA
|
||||
pdfToPDFA.title=PDF To PDF/A
|
||||
|
@ -364,9 +364,9 @@ home.compressPdfs.title=Compress
|
||||
home.compressPdfs.desc=Compress PDFs to reduce their file size.
|
||||
compressPdfs.tags=squish,small,tiny
|
||||
|
||||
home.removeReadOnly.title=Unlock PDF Forms
|
||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
|
||||
home.changeMetadata.title=Change Metadata
|
||||
home.changeMetadata.desc=Change/Remove/Add metadata from a PDF document
|
||||
@ -1195,10 +1195,10 @@ changeMetadata.selectText.4=Other Metadata:
|
||||
changeMetadata.selectText.5=Add Custom Metadata Entry
|
||||
changeMetadata.submit=Change
|
||||
|
||||
#removeReadOnly
|
||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
||||
removeReadOnly.header=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
#unlockPDFForms
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
||||
#pdfToPDFA
|
||||
pdfToPDFA.title=PDF To PDF/A
|
||||
|
@ -1430,9 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=Estas cookies son esenciales
|
||||
cookieBanner.preferencesModal.analytics.title=Análisis
|
||||
cookieBanner.preferencesModal.analytics.description=Estas cookies nos ayudan a entender cómo se están utilizando nuestras herramientas, para que podamos centrarnos en desarrollar las funciones que nuestra comunidad valora más. Tenga la seguridad de que Stirling PDF no puede y nunca podrá rastrear el contenido de los documentos con los que trabaja.
|
||||
|
||||
home.removeReadOnly.title=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=これらのCookieはウェ
|
||||
cookieBanner.preferencesModal.analytics.title=分析
|
||||
cookieBanner.preferencesModal.analytics.description=これらのCookieはツールがどのように使用されているかを把握するのに役立ちます。これによりコミュニティが最も重視する機能の開発に集中することができます。ご安心ください。Stirling PDFはお客様が操作するドキュメントの内容を追跡することは決してありません。
|
||||
|
||||
home.removeReadOnly.title=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -364,9 +364,9 @@ home.compressPdfs.title=Comprimir
|
||||
home.compressPdfs.desc=Comprimir PDFs para reduzir o seu tamanho.
|
||||
compressPdfs.tags=comprimir,pequeno,minúsculo
|
||||
|
||||
home.removeReadOnly.title=Remover Apenas Leitura de Formulários
|
||||
home.removeReadOnly.desc=Remover propriedades de apenas leitura dos formulários de um PDF
|
||||
removeReadOnly.tags=remover,apagar,formulário,campo,apenas leitura
|
||||
home.unlockPDFForms.title=Remover Apenas Leitura de Formulários
|
||||
home.unlockPDFForms.desc=Remover propriedades de apenas leitura dos formulários de um PDF
|
||||
unlockPDFForms.tags=remover,apagar,formulário,campo,apenas leitura
|
||||
|
||||
home.changeMetadata.title=Alterar Metadados
|
||||
home.changeMetadata.desc=Alterar/Remover/Adicionar metadados de um documento PDF
|
||||
@ -1196,10 +1196,10 @@ changeMetadata.selectText.4=Outros Metadados:
|
||||
changeMetadata.selectText.5=Adicionar Entrada de Metadados Personalizada
|
||||
changeMetadata.submit=Alterar
|
||||
|
||||
#removeReadOnly
|
||||
removeReadOnly.title=Remover Apenas Leitura de Formulários
|
||||
removeReadOnly.header=Remover Apenas Leitura de Formulários
|
||||
removeReadOnly.submit=Remover
|
||||
#unlockPDFForms
|
||||
unlockPDFForms.title=Remover Apenas Leitura de Formulários
|
||||
unlockPDFForms.header=Remover Apenas Leitura de Formulários
|
||||
unlockPDFForms.submit=Remover
|
||||
|
||||
#pdfToPDFA
|
||||
pdfToPDFA.title=PDF Para PDF/A
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +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=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -1430,9 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=這些 Cookies 對網站正
|
||||
cookieBanner.preferencesModal.analytics.title=分析 Cookies
|
||||
cookieBanner.preferencesModal.analytics.description=這些 Cookies 幫助我們分析您如何使用我們的工具,好讓我們能專注在構建社群最重視的功能。儘管放心—— Stirling PDF 不會且永不追蹤您的文件
|
||||
|
||||
home.removeReadOnly.title=Unlock PDF Forms
|
||||
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=Unlock PDF Forms
|
||||
removeReadOnly.submit=Remove
|
||||
home.unlockPDFForms.title=Unlock PDF Forms
|
||||
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||
unlockPDFForms.header=Unlock PDF Forms
|
||||
unlockPDFForms.submit=Remove
|
||||
|
@ -232,7 +232,7 @@
|
||||
th:replace="~{fragments/navbarEntry :: navbarEntry('replace-and-invert-color-pdf', 'format_color_fill', 'home.replaceColorPdf.title', 'home.replaceColorPdf.desc', 'replaceColorPdf.tags', 'other')}">
|
||||
</div>
|
||||
<div
|
||||
th:replace="~{fragments/navbarEntry :: navbarEntry('remove-read-only', 'preview_off', 'home.removeReadOnly.title', 'home.removeReadOnly.desc', 'removeReadOnly.tags', 'other')}">
|
||||
th:replace="~{fragments/navbarEntry :: navbarEntry('unlock-pdf-forms', 'preview_off', 'home.unlockPDFForms.title', 'home.unlockPDFForms.desc', 'unlockPDFForms.tags', 'other')}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -288,7 +288,7 @@
|
||||
th:replace="~{fragments/card :: card(id='replace-and-invert-color-pdf', cardTitle=#{home.replaceColorPdf.title}, cardText=#{home.replaceColorPdf.desc}, cardLink='replace-and-invert-color-pdf', toolIcon='format_color_fill', tags=#{replaceColorPdf.tags}, toolGroup='other')}">
|
||||
</div>
|
||||
<div
|
||||
th:replace="~{fragments/card :: card(id='remove-read-only', cardTitle=#{home.removeReadOnly.title}, cardText=#{home.removeReadOnly.desc}, cardLink='remove-read-only', toolIcon='preview_off', tags=#{removeReadOnly.tags}, toolGroup='other')}">
|
||||
th:replace="~{fragments/card :: card(id='unlock-pdf-forms', cardTitle=#{home.unlockPDFForms.title}, cardText=#{home.unlockPDFForms.desc}, cardLink='unlock-pdf-forms', toolIcon='preview_off', tags=#{unlockPDFForms.tags}, toolGroup='other')}">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="https://www.thymeleaf.org">
|
||||
<head>
|
||||
<th:block th:insert="~{fragments/common :: head(title=#{removeReadOnly.title}, header=#{removeReadOnly.header})}"></th:block>
|
||||
<th:block th:insert="~{fragments/common :: head(title=#{unlockPDFForms.title}, header=#{unlockPDFForms.header})}"></th:block>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@ -15,14 +15,14 @@
|
||||
<div class="col-md-6 bg-card">
|
||||
<div class="tool-header">
|
||||
<span class="material-symbols-rounded tool-header-icon other">preview_off</span>
|
||||
<span class="tool-header-text" th:text="#{removeReadOnly.header}"></span>
|
||||
<span class="tool-header-text" th:text="#{unlockPDFForms.header}"></span>
|
||||
</div>
|
||||
<form method="post" enctype="multipart/form-data" th:action="@{'/api/v1/misc/remove-read-only'}" id="pdfForm" class="mb-3">
|
||||
<form method="post" enctype="multipart/form-data" th:action="@{'/api/v1/misc/unlock-pdf-forms'}" id="pdfForm" class="mb-3">
|
||||
<div class="custom-file">
|
||||
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multipleInputsForSingleRequest=false, accept='application/pdf')}"></div>
|
||||
</div>
|
||||
<br>
|
||||
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{removeReadOnly.submit}"></button>
|
||||
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{unlockPDFForms.submit}"></button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user