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", "sign");
|
||||||
addEndpointToGroup("Other", "flatten");
|
addEndpointToGroup("Other", "flatten");
|
||||||
addEndpointToGroup("Other", "repair");
|
addEndpointToGroup("Other", "repair");
|
||||||
addEndpointToGroup("Other", "remove-read-only");
|
addEndpointToGroup("Other", "unlock-pdf-forms");
|
||||||
addEndpointToGroup("Other", REMOVE_BLANKS);
|
addEndpointToGroup("Other", REMOVE_BLANKS);
|
||||||
addEndpointToGroup("Other", "remove-annotations");
|
addEndpointToGroup("Other", "remove-annotations");
|
||||||
addEndpointToGroup("Other", "compare");
|
addEndpointToGroup("Other", "compare");
|
||||||
|
@ -31,21 +31,21 @@ import stirling.software.SPDF.utils.WebResponseUtils;
|
|||||||
@RequestMapping("/api/v1/misc")
|
@RequestMapping("/api/v1/misc")
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@Tag(name = "Misc", description = "Miscellaneous APIs")
|
@Tag(name = "Misc", description = "Miscellaneous APIs")
|
||||||
public class RemoveReadOnlyController {
|
public class UnlockPDFFormsController {
|
||||||
private final CustomPDFDocumentFactory pdfDocumentFactory;
|
private final CustomPDFDocumentFactory pdfDocumentFactory;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
public RemoveReadOnlyController(CustomPDFDocumentFactory pdfDocumentFactory) {
|
public UnlockPDFFormsController(CustomPDFDocumentFactory pdfDocumentFactory) {
|
||||||
this.pdfDocumentFactory = pdfDocumentFactory;
|
this.pdfDocumentFactory = pdfDocumentFactory;
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping(consumes = "multipart/form-data", value = "/remove-read-only")
|
@PostMapping(consumes = "multipart/form-data", value = "/unlock-pdf-forms")
|
||||||
@Operation(
|
@Operation(
|
||||||
summary = "Remove read-only property from form fields",
|
summary = "Remove read-only property from form fields",
|
||||||
description =
|
description =
|
||||||
"Removing read-only property from form fields making them fillable"
|
"Removing read-only property from form fields making them fillable"
|
||||||
+ "Input:PDF, Output:PDF. Type:SISO")
|
+ "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)) {
|
try (PDDocument document = pdfDocumentFactory.load(file)) {
|
||||||
PDAcroForm acroForm = document.getDocumentCatalog().getAcroForm();
|
PDAcroForm acroForm = document.getDocumentCatalog().getAcroForm();
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ public class RemoveReadOnlyController {
|
|||||||
}
|
}
|
||||||
String mergedFileName =
|
String mergedFileName =
|
||||||
file.getFileInput().getOriginalFilename().replaceFirst("[.][^.]+$", "")
|
file.getFileInput().getOriginalFilename().replaceFirst("[.][^.]+$", "")
|
||||||
+ "_removed_readonly.pdf";
|
+ "_unlocked_forms.pdf";
|
||||||
return WebResponseUtils.pdfDocToWebResponse(
|
return WebResponseUtils.pdfDocToWebResponse(
|
||||||
document, Filenames.toSimpleFileName(mergedFileName));
|
document, Filenames.toSimpleFileName(mergedFileName));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
@ -98,11 +98,11 @@ public class OtherWebController {
|
|||||||
return "misc/change-metadata";
|
return "misc/change-metadata";
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/remove-read-only")
|
@GetMapping("/unlock-pdf-forms")
|
||||||
@Hidden
|
@Hidden
|
||||||
public String removeReadOnlyForm(Model model) {
|
public String unlockPDFFormsForm(Model model) {
|
||||||
model.addAttribute("currentPage", "remove-read-only");
|
model.addAttribute("currentPage", "unlock-pdf-forms");
|
||||||
return "misc/remove-read-only";
|
return "misc/unlock-pdf-forms";
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/compare")
|
@GetMapping("/compare")
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
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.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.
|
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.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -364,9 +364,9 @@ home.compressPdfs.title=Compress
|
|||||||
home.compressPdfs.desc=Compress PDFs to reduce their file size.
|
home.compressPdfs.desc=Compress PDFs to reduce their file size.
|
||||||
compressPdfs.tags=squish,small,tiny
|
compressPdfs.tags=squish,small,tiny
|
||||||
|
|
||||||
home.removeReadOnly.title=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
|
|
||||||
home.changeMetadata.title=Change Metadata
|
home.changeMetadata.title=Change Metadata
|
||||||
home.changeMetadata.desc=Change/Remove/Add metadata from a PDF document
|
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.selectText.5=Add Custom Metadata Entry
|
||||||
changeMetadata.submit=Change
|
changeMetadata.submit=Change
|
||||||
|
|
||||||
#removeReadOnly
|
#unlockPDFForms
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
|
||||||
#pdfToPDFA
|
#pdfToPDFA
|
||||||
pdfToPDFA.title=PDF To PDF/A
|
pdfToPDFA.title=PDF To PDF/A
|
||||||
|
@ -364,9 +364,9 @@ home.compressPdfs.title=Compress
|
|||||||
home.compressPdfs.desc=Compress PDFs to reduce their file size.
|
home.compressPdfs.desc=Compress PDFs to reduce their file size.
|
||||||
compressPdfs.tags=squish,small,tiny
|
compressPdfs.tags=squish,small,tiny
|
||||||
|
|
||||||
home.removeReadOnly.title=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
|
|
||||||
home.changeMetadata.title=Change Metadata
|
home.changeMetadata.title=Change Metadata
|
||||||
home.changeMetadata.desc=Change/Remove/Add metadata from a PDF document
|
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.selectText.5=Add Custom Metadata Entry
|
||||||
changeMetadata.submit=Change
|
changeMetadata.submit=Change
|
||||||
|
|
||||||
#removeReadOnly
|
#unlockPDFForms
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
|
||||||
#pdfToPDFA
|
#pdfToPDFA
|
||||||
pdfToPDFA.title=PDF To PDF/A
|
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.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.
|
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.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +1430,9 @@ cookieBanner.preferencesModal.necessary.description=これらのCookieはウェ
|
|||||||
cookieBanner.preferencesModal.analytics.title=分析
|
cookieBanner.preferencesModal.analytics.title=分析
|
||||||
cookieBanner.preferencesModal.analytics.description=これらのCookieはツールがどのように使用されているかを把握するのに役立ちます。これによりコミュニティが最も重視する機能の開発に集中することができます。ご安心ください。Stirling PDFはお客様が操作するドキュメントの内容を追跡することは決してありません。
|
cookieBanner.preferencesModal.analytics.description=これらのCookieはツールがどのように使用されているかを把握するのに役立ちます。これによりコミュニティが最も重視する機能の開発に集中することができます。ご安心ください。Stirling PDFはお客様が操作するドキュメントの内容を追跡することは決してありません。
|
||||||
|
|
||||||
home.removeReadOnly.title=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
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.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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -364,9 +364,9 @@ home.compressPdfs.title=Comprimir
|
|||||||
home.compressPdfs.desc=Comprimir PDFs para reduzir o seu tamanho.
|
home.compressPdfs.desc=Comprimir PDFs para reduzir o seu tamanho.
|
||||||
compressPdfs.tags=comprimir,pequeno,minúsculo
|
compressPdfs.tags=comprimir,pequeno,minúsculo
|
||||||
|
|
||||||
home.removeReadOnly.title=Remover Apenas Leitura de Formulários
|
home.unlockPDFForms.title=Remover Apenas Leitura de Formulários
|
||||||
home.removeReadOnly.desc=Remover propriedades de apenas leitura dos formulários de um PDF
|
home.unlockPDFForms.desc=Remover propriedades de apenas leitura dos formulários de um PDF
|
||||||
removeReadOnly.tags=remover,apagar,formulário,campo,apenas leitura
|
unlockPDFForms.tags=remover,apagar,formulário,campo,apenas leitura
|
||||||
|
|
||||||
home.changeMetadata.title=Alterar Metadados
|
home.changeMetadata.title=Alterar Metadados
|
||||||
home.changeMetadata.desc=Alterar/Remover/Adicionar metadados de um documento PDF
|
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.selectText.5=Adicionar Entrada de Metadados Personalizada
|
||||||
changeMetadata.submit=Alterar
|
changeMetadata.submit=Alterar
|
||||||
|
|
||||||
#removeReadOnly
|
#unlockPDFForms
|
||||||
removeReadOnly.title=Remover Apenas Leitura de Formulários
|
unlockPDFForms.title=Remover Apenas Leitura de Formulários
|
||||||
removeReadOnly.header=Remover Apenas Leitura de Formulários
|
unlockPDFForms.header=Remover Apenas Leitura de Formulários
|
||||||
removeReadOnly.submit=Remover
|
unlockPDFForms.submit=Remover
|
||||||
|
|
||||||
#pdfToPDFA
|
#pdfToPDFA
|
||||||
pdfToPDFA.title=PDF Para PDF/A
|
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.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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
unlockPDFForms.submit=Remove
|
||||||
|
@ -1430,9 +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=Unlock PDF Forms
|
home.unlockPDFForms.title=Unlock PDF Forms
|
||||||
home.removeReadOnly.desc=Remove read-only property of form fields in a PDF document.
|
home.unlockPDFForms.desc=Remove read-only property of form fields in a PDF document.
|
||||||
removeReadOnly.tags=remove,delete,form,field,readonly
|
unlockPDFForms.tags=remove,delete,form,field,readonly
|
||||||
removeReadOnly.title=Remove Read-Only from Form Fields
|
unlockPDFForms.title=Remove Read-Only from Form Fields
|
||||||
removeReadOnly.header=Unlock PDF Forms
|
unlockPDFForms.header=Unlock PDF Forms
|
||||||
removeReadOnly.submit=Remove
|
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')}">
|
th:replace="~{fragments/navbarEntry :: navbarEntry('replace-and-invert-color-pdf', 'format_color_fill', 'home.replaceColorPdf.title', 'home.replaceColorPdf.desc', 'replaceColorPdf.tags', 'other')}">
|
||||||
</div>
|
</div>
|
||||||
<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>
|
</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')}">
|
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>
|
||||||
<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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="https://www.thymeleaf.org">
|
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="https://www.thymeleaf.org">
|
||||||
<head>
|
<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>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -15,14 +15,14 @@
|
|||||||
<div class="col-md-6 bg-card">
|
<div class="col-md-6 bg-card">
|
||||||
<div class="tool-header">
|
<div class="tool-header">
|
||||||
<span class="material-symbols-rounded tool-header-icon other">preview_off</span>
|
<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>
|
</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 class="custom-file">
|
||||||
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multipleInputsForSingleRequest=false, accept='application/pdf')}"></div>
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multipleInputsForSingleRequest=false, accept='application/pdf')}"></div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<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>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user