pages*: improve list placeholders and wording of descriptions (#12111)

* pages*: improve wording and list placeholders

* clamav: fix verb tenses

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>

* buzzphrase: use k instead of n for number of phrases

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>

* adguardhome: use non-default instead of different

* adguardhome: use configuration instead of config

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* goimports, module: fix list placeholders

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pages*: leave stems and extensions in the same placeholders

* pages*: fix list placeholders

* pages*: fix list placeholders

* pages*: apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* qpdf: enclose n with backticks

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Vitor Henrique
2024-01-31 00:55:19 -03:00
committed by GitHub
parent 121f92e477
commit e7d5609dd3
178 changed files with 348 additions and 380 deletions

View File

@@ -5,24 +5,24 @@
- Extract pages 1-3, 5 and 6-10 from a PDF file and save them as another one:
`qpdf --empty --pages {{input.pdf}} {{1-3,5,6-10}} -- {{output.pdf}}`
`qpdf --empty --pages {{path/to/input.pdf}} {{1-3,5,6-10}} -- {{path/to/output.pdf}}`
- Merge (concatenate) all the pages of a list of PDF files and save the result as a new PDF:
- Merge (concatenate) all the pages of multiple PDF files and save the result as a new PDF:
`qpdf --empty --pages {{file1.pdf}} {{file2.pdf}} {{file3.pdf}} -- {{output.pdf}}`
`qpdf --empty --pages {{path/to/file1.pdf file2.pdf ...}} -- {{path/to/output.pdf}}`
- Merge (concatenate) given pages from a list of PDF files and save the result as a new PDF:
`qpdf --empty --pages {{file1.pdf}} {{1,6-8}} {{file2.pdf}} {{3,4,5}} -- {{output.pdf}}`
`qpdf --empty --pages {{path/to/file1.pdf}} {{1,6-8}} {{path/to/file2.pdf}} {{3,4,5}} -- {{path/to/output.pdf}}`
- Write each group of n pages to a separate output file with a given filename pattern:
- Write each group of `n` pages to a separate output file with a given filename pattern:
`qpdf --split-pages=n {{input.pdf}} {{out_%d.pdf}}`
`qpdf --split-pages={{n}} {{path/to/input.pdf}} {{path/to/out_%d.pdf}}`
- Rotate certain pages of a PDF with a given angle:
`qpdf --rotate={{90:2,4,6}} --rotate={{180:7-8}} {{input.pdf}} {{output.pdf}}`
`qpdf --rotate={{90:2,4,6}} --rotate={{180:7-8}} {{path/to/input.pdf}} {{path/to/output.pdf}}`
- Remove the password from a password-protected file:
`qpdf --password={{password}} --decrypt {{input.pdf}} {{output.pdf}}`
`qpdf --password={{password}} --decrypt {{path/to/input.pdf}} {{path/to/output.pdf}}`