Merge pull request #565 from Skillkiller/translate-pdf-to-image

Implement missing i18n translations for PDF-to-Image modules
This commit is contained in:
Alam
2026-03-24 11:55:11 +05:30
committed by GitHub
27 changed files with 287 additions and 96 deletions

View File

@@ -263,23 +263,84 @@
},
"pdfToJpg": {
"name": "PDF to JPG",
"subtitle": "Convert each PDF page into a JPG image."
"subtitle": "Convert each PDF page into a JPG image.",
"imageQuality": "Image Quality",
"imageQualityExplanation": "Higher quality = larger file size",
"alert": {
"invalidFile": "Invalid File",
"invalidFileExplanation": "Please upload a PDF file.",
"noFile": "No File",
"noFileExplanation": "Please upload a PDF file first.",
"conversionSuccess": "PDF converted to JPGs successfully!",
"conversionError": "Failed to convert PDF to JPG. The file might be corrupted."
},
"loader": {
"converting": "Converting to JPG..."
}
},
"pdfToPng": {
"name": "PDF to PNG",
"subtitle": "Convert each PDF page into a PNG image."
"subtitle": "Convert each PDF page into a PNG image.",
"imageScale": "Image Scale",
"imageScaleExplanation": "Higher scale = better quality but larger file size",
"alert": {
"invalidFile": "Invalid File",
"invalidFileExplanation": "Please upload a PDF file.",
"noFile": "No File",
"noFileExplanation": "Please upload a PDF file first.",
"conversionSuccess": "PDF converted to PNGs successfully!",
"conversionError": "Failed to convert PDF to PNG. The file might be corrupted."
},
"loader": {
"converting": "Converting to PNG..."
}
},
"pdfToWebp": {
"name": "PDF to WebP",
"subtitle": "Convert each PDF page into a WebP image."
"subtitle": "Convert each PDF page into a WebP image.",
"imageQuality": "Image Quality",
"imageQualityExplanation": "Higher quality = larger file size",
"alert": {
"invalidFile": "Invalid File",
"invalidFileExplanation": "Please upload a PDF file.",
"noFile": "No File",
"noFileExplanation": "Please upload a PDF file first.",
"conversionSuccess": "PDF converted to WebPs successfully!",
"conversionError": "Failed to convert PDF to WebP. The file might be corrupted."
},
"loader": {
"converting": "Converting to WebP..."
}
},
"pdfToBmp": {
"name": "PDF to BMP",
"subtitle": "Convert each PDF page into a BMP image."
"subtitle": "Convert each PDF page into a BMP image.",
"alert": {
"invalidFile": "Invalid File",
"invalidFileExplanation": "Please upload a PDF file.",
"noFile": "No File",
"noFileExplanation": "Please upload a PDF file first.",
"conversionSuccess": "PDF converted to BMPs successfully!",
"conversionError": "Failed to convert PDF to BMP. The file might be corrupted."
},
"loader": {
"converting": "Converting to BMP..."
}
},
"pdfToTiff": {
"name": "PDF to TIFF",
"subtitle": "Convert each PDF page into a TIFF image."
"subtitle": "Convert each PDF page into a TIFF image.",
"alert": {
"invalidFile": "Invalid File",
"invalidFileExplanation": "Please upload a PDF file.",
"noFile": "No File",
"noFileExplanation": "Please upload a PDF file first.",
"conversionSuccess": "PDF converted to TIFFs successfully!",
"conversionError": "Failed to convert PDF to TIFF. The file might be corrupted."
},
"loader": {
"converting": "Converting to TIFF..."
}
},
"pdfToGreyscale": {
"name": "PDF to Greyscale",