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

@@ -6,27 +6,27 @@
- Render all frames of an animation in the background, without loading the UI (output is saved to `/tmp`):
`blender --background {{path/to/file}}.blend --render-anim`
`blender --background {{path/to/file.blend}} --render-anim`
- Render an animation using a specific image naming pattern, in a path relative (`//`) to the .blend file:
`blender --background {{path/to/file}}.blend --render-output //{{render/frame_###.png}} --render-anim`
`blender --background {{path/to/file.blend}} --render-output //{{render/frame_###.png}} --render-anim`
- Render the 10th frame of an animation as a single image, saved to an existing directory (absolute path):
`blender --background {{path/to/file}}.blend --render-output {{/path/to/output_directory}} --render-frame {{10}}`
`blender --background {{path/to/file.blend}} --render-output {{/path/to/output_directory}} --render-frame {{10}}`
- Render the second last frame in an animation as a JPEG image, saved to an existing directory (relative path):
`blender --background {{path/to/file}}.blend --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}`
`blender --background {{path/to/file.blend}} --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}`
- Render the animation of a specific scene, starting at frame 10 and ending at frame 500:
`blender --background {{path/to/file}}.blend --scene {{scene_name}} --frame-start {{10}} --frame-end {{500}} --render-anim`
`blender --background {{path/to/file.blend}} --scene {{scene_name}} --frame-start {{10}} --frame-end {{500}} --render-anim`
- Render an animation at a specific resolution, by passing a Python expression:
`blender --background {{path/to/file}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
`blender --background {{path/to/file.blend}} --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
- Start an interactive Blender session in the terminal with a Python console (do `import bpy` after starting):